Based on Nekogram. Key additions: - Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app) - Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so - Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI - Auto-restore proxy on restart, rebind to active network (LTE/WiFi) - Server credentials externalized to git-ignored XrayServers.java (+ template) - libxray Go source included; compiled .so, keystore, google-services.json ignored
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
// Copyright 2019 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
|
|
#define BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
|
|
|
|
#include "base/base_export.h"
|
|
#include "base/profiler/sampling_profiler_thread_token.h"
|
|
#include "base/profiler/thread_delegate.h"
|
|
#include "base/threading/platform_thread.h"
|
|
|
|
namespace base {
|
|
|
|
// Platform- and thread-specific implementation in support of stack sampling on
|
|
// POSIX.
|
|
class BASE_EXPORT ThreadDelegatePosix : public ThreadDelegate {
|
|
public:
|
|
ThreadDelegatePosix(SamplingProfilerThreadToken thread_token);
|
|
|
|
ThreadDelegatePosix(const ThreadDelegatePosix&) = delete;
|
|
ThreadDelegatePosix& operator=(const ThreadDelegatePosix&) = delete;
|
|
|
|
// ThreadDelegate
|
|
PlatformThreadId GetThreadId() const override;
|
|
uintptr_t GetStackBaseAddress() const override;
|
|
std::vector<uintptr_t*> GetRegistersToRewrite(
|
|
RegisterContext* thread_context) override;
|
|
|
|
private:
|
|
const PlatformThreadId thread_id_;
|
|
const uintptr_t thread_stack_base_address_;
|
|
};
|
|
|
|
} // namespace base
|
|
|
|
#endif // BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
|