#include "content/child/sandboxed_process_thread_type_handler.h"
#include "content/child/child_thread_impl.h"
#include "content/common/thread_type_switcher.mojom.h"
namespace content {
namespace {
SandboxedProcessThreadTypeHandler* g_sandboxed_process_thread_type_handler = …;
}
SandboxedProcessThreadTypeHandler::SandboxedProcessThreadTypeHandler() { … }
SandboxedProcessThreadTypeHandler::~SandboxedProcessThreadTypeHandler() { … }
void SandboxedProcessThreadTypeHandler::Create() { … }
void SandboxedProcessThreadTypeHandler::NotifyMainChildThreadCreated() { … }
SandboxedProcessThreadTypeHandler* SandboxedProcessThreadTypeHandler::Get() { … }
bool SandboxedProcessThreadTypeHandler::HandleThreadTypeChange(
base::PlatformThreadId thread_id,
base::ThreadType thread_type) { … }
void SandboxedProcessThreadTypeHandler::ConnectThreadTypeSwitcher() { … }
}