FoxiGram/TMessagesProj/jni/voip/webrtc/base/task/task_traits.cc
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

53 lines
1.3 KiB
C++

// Copyright 2016 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.
#include "base/task/task_traits.h"
#include <stddef.h>
#include <ostream>
#include "base/logging.h"
namespace base {
const char* TaskPriorityToString(TaskPriority task_priority) {
switch (task_priority) {
case TaskPriority::BEST_EFFORT:
return "BEST_EFFORT";
case TaskPriority::USER_VISIBLE:
return "USER_VISIBLE";
case TaskPriority::USER_BLOCKING:
return "USER_BLOCKING";
}
NOTREACHED();
return "";
}
const char* TaskShutdownBehaviorToString(
TaskShutdownBehavior shutdown_behavior) {
switch (shutdown_behavior) {
case TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN:
return "CONTINUE_ON_SHUTDOWN";
case TaskShutdownBehavior::SKIP_ON_SHUTDOWN:
return "SKIP_ON_SHUTDOWN";
case TaskShutdownBehavior::BLOCK_SHUTDOWN:
return "BLOCK_SHUTDOWN";
}
NOTREACHED();
return "";
}
std::ostream& operator<<(std::ostream& os, const TaskPriority& task_priority) {
os << TaskPriorityToString(task_priority);
return os;
}
std::ostream& operator<<(std::ostream& os,
const TaskShutdownBehavior& shutdown_behavior) {
os << TaskShutdownBehaviorToString(shutdown_behavior);
return os;
}
} // namespace base