FoxiGram/TMessagesProj/jni/voip/webrtc/base/trace_event/log_message.h
instant992 8e79f2ee9c FoxiGram: Telegram client with built-in Xray VLESS proxy
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
2026-06-08 16:41:07 +04:00

49 lines
No EOL
1.3 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_TRACE_EVENT_LOG_MESSAGE_H_
#define BASE_TRACE_EVENT_LOG_MESSAGE_H_
#include <stddef.h>
#include <memory>
#include <string>
#include <vector>
#include "base/macros.h"
#include "base/strings/string_piece.h"
#include "base/trace_event/trace_event_impl.h"
namespace base {
class Value;
namespace trace_event {
class BASE_EXPORT LogMessage : public ConvertableToTraceFormat {
public:
LogMessage(const char* file, base::StringPiece message, int line);
~LogMessage() override;
// ConvertableToTraceFormat class implementation.
void AppendAsTraceFormat(std::string* out) const override;
bool AppendToProto(ProtoAppender* appender) override;
void EstimateTraceMemoryOverhead(TraceEventMemoryOverhead* overhead) override;
const char* file() const { return file_; }
const std::string& message() const { return message_; }
int line_number() const { return line_number_; }
private:
const char* file_;
std::string message_;
int line_number_;
DISALLOW_COPY_AND_ASSIGN(LogMessage);
};
} // namespace trace_event
} // namespace base
#endif // BASE_TRACE_EVENT_LOG_MESSAGE_H_