chromium/content/browser/browser_process_io_thread.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/browser_process_io_thread.h"

#include "base/clang_profiling_buildflags.h"
#include "base/compiler_specific.h"
#include "base/debug/alias.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/threading/hang_watcher.h"
#include "base/threading/thread_restrictions.h"
#include "base/trace_event/memory_dump_manager.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "content/browser/browser_child_process_host_impl.h"
#include "content/browser/browser_thread_impl.h"
#include "content/browser/child_process_host_impl.h"
#include "content/browser/utility_process_host.h"
#include "content/public/browser/browser_child_process_host_iterator.h"
#include "content/public/common/process_type.h"
#include "services/network/public/mojom/network_service.mojom.h"

#if BUILDFLAG(IS_ANDROID)
#include "base/android/jni_android.h"
#endif

#if BUILDFLAG(IS_WIN)
#include "base/win/scoped_com_initializer.h"
#endif

namespace content {

BrowserProcessIOThread::BrowserProcessIOThread()
    :{}

BrowserProcessIOThread::~BrowserProcessIOThread() {}

void BrowserProcessIOThread::RegisterAsBrowserThread() {}

void BrowserProcessIOThread::AllowBlockingForTesting() {}

void BrowserProcessIOThread::Init() {}

void BrowserProcessIOThread::Run(base::RunLoop* run_loop) {}

void BrowserProcessIOThread::CleanUp() {}

void BrowserProcessIOThread::IOThreadRun(base::RunLoop* run_loop) {}

void BrowserProcessIOThread::ProcessHostCleanUp() {}

}  // namespace content