2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework 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 "libcef/browser/context.h"
|
|
|
|
#include "libcef/browser/browser_context.h"
|
|
|
|
#include "libcef/browser/browser_host_impl.h"
|
2012-12-30 12:17:49 +01:00
|
|
|
#include "libcef/browser/browser_info.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef/browser/browser_main.h"
|
|
|
|
#include "libcef/browser/browser_message_loop.h"
|
2013-10-23 21:30:47 +02:00
|
|
|
#include "libcef/browser/chrome_browser_process_stub.h"
|
2015-08-31 13:28:07 +02:00
|
|
|
#include "libcef/browser/component_updater/cef_component_updater_configurator.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef/browser/content_browser_client.h"
|
|
|
|
#include "libcef/browser/thread_util.h"
|
2012-10-18 00:45:49 +02:00
|
|
|
#include "libcef/browser/trace_subscriber.h"
|
2015-03-02 21:25:14 +01:00
|
|
|
#include "libcef/common/cef_switches.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "libcef/common/main_delegate.h"
|
2013-02-02 01:21:59 +01:00
|
|
|
#include "libcef/renderer/content_renderer_client.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-11-12 18:43:39 +01:00
|
|
|
#include "base/base_switches.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "base/bind.h"
|
|
|
|
#include "base/command_line.h"
|
2013-11-12 18:43:39 +01:00
|
|
|
#include "base/debug/debugger.h"
|
2014-11-12 20:25:15 +01:00
|
|
|
#include "base/files/file_util.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "base/synchronization/waitable_event.h"
|
2015-08-31 13:28:07 +02:00
|
|
|
#include "base/threading/thread_restrictions.h"
|
|
|
|
#include "chrome/browser/component_updater/widevine_cdm_component_installer.h"
|
2013-10-23 21:30:47 +02:00
|
|
|
#include "chrome/browser/printing/print_job_manager.h"
|
2015-08-31 13:28:07 +02:00
|
|
|
#include "components/component_updater/component_updater_service.h"
|
|
|
|
#include "components/update_client/configurator.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "content/public/app/content_main.h"
|
|
|
|
#include "content/public/app/content_main_runner.h"
|
2013-09-03 18:43:31 +02:00
|
|
|
#include "content/public/browser/notification_service.h"
|
|
|
|
#include "content/public/browser/notification_types.h"
|
2013-02-02 01:21:59 +01:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "content/public/common/content_switches.h"
|
|
|
|
#include "ui/base/ui_base_switches.h"
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
2015-11-10 21:18:16 +01:00
|
|
|
#include "content/public/app/sandbox_helper_win.h"
|
2012-08-04 02:59:58 +02:00
|
|
|
#include "sandbox/win/src/sandbox_types.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#endif
|
|
|
|
|
2013-09-03 20:06:25 +02:00
|
|
|
namespace {
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-09-03 20:06:25 +02:00
|
|
|
CefContext* g_context = NULL;
|
|
|
|
|
|
|
|
// Force shutdown when the process terminates if a context currently exists and
|
|
|
|
// CefShutdown() has not been explicitly called.
|
|
|
|
class CefForceShutdown {
|
|
|
|
public:
|
2013-10-23 21:30:47 +02:00
|
|
|
~CefForceShutdown() {
|
|
|
|
if (g_context) {
|
|
|
|
g_context->Shutdown();
|
|
|
|
delete g_context;
|
|
|
|
g_context = NULL;
|
|
|
|
}
|
|
|
|
}
|
2013-09-03 20:06:25 +02:00
|
|
|
} g_force_shutdown;
|
|
|
|
|
|
|
|
} // namespace
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
int CefExecuteProcess(const CefMainArgs& args,
|
2013-11-15 19:47:02 +01:00
|
|
|
CefRefPtr<CefApp> application,
|
|
|
|
void* windows_sandbox_info) {
|
2015-01-09 18:22:10 +01:00
|
|
|
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
|
2012-04-03 03:34:16 +02:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
command_line.ParseFromString(::GetCommandLineW());
|
|
|
|
#else
|
|
|
|
command_line.InitFromArgv(args.argc, args.argv);
|
|
|
|
#endif
|
|
|
|
|
2013-11-12 18:43:39 +01:00
|
|
|
// Wait for the debugger as early in process initialization as possible.
|
|
|
|
if (command_line.HasSwitch(switches::kWaitForDebugger))
|
|
|
|
base::debug::WaitForDebugger(60, true);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// If no process type is specified then it represents the browser process and
|
|
|
|
// we do nothing.
|
|
|
|
std::string process_type =
|
|
|
|
command_line.GetSwitchValueASCII(switches::kProcessType);
|
|
|
|
if (process_type.empty())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
CefMainDelegate main_delegate(application);
|
|
|
|
|
|
|
|
// Execute the secondary process.
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
sandbox::SandboxInterfaceInfo sandbox_info = {0};
|
2013-11-15 19:47:02 +01:00
|
|
|
if (windows_sandbox_info == NULL) {
|
|
|
|
content::InitializeSandboxInfo(&sandbox_info);
|
|
|
|
windows_sandbox_info = &sandbox_info;
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2014-04-04 18:50:38 +02:00
|
|
|
content::ContentMainParams params(&main_delegate);
|
|
|
|
params.instance = args.instance;
|
|
|
|
params.sandbox_info =
|
|
|
|
static_cast<sandbox::SandboxInterfaceInfo*>(windows_sandbox_info);
|
|
|
|
|
|
|
|
return content::ContentMain(params);
|
2012-04-03 03:34:16 +02:00
|
|
|
#else
|
2014-04-04 18:50:38 +02:00
|
|
|
content::ContentMainParams params(&main_delegate);
|
|
|
|
params.argc = args.argc;
|
|
|
|
params.argv = const_cast<const char**>(args.argv);
|
|
|
|
|
|
|
|
return content::ContentMain(params);
|
2012-04-03 03:34:16 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefInitialize(const CefMainArgs& args,
|
|
|
|
const CefSettings& settings,
|
2013-11-15 19:47:02 +01:00
|
|
|
CefRefPtr<CefApp> application,
|
|
|
|
void* windows_sandbox_info) {
|
2012-04-03 03:34:16 +02:00
|
|
|
// Return true if the global context already exists.
|
2013-09-03 20:06:25 +02:00
|
|
|
if (g_context)
|
2012-04-03 03:34:16 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
if (settings.size != sizeof(cef_settings_t)) {
|
|
|
|
NOTREACHED() << "invalid CefSettings structure size";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-23 21:30:47 +02:00
|
|
|
g_browser_process = new ChromeBrowserProcessStub();
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// Create the new global context object.
|
2013-09-03 20:06:25 +02:00
|
|
|
g_context = new CefContext();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Initialize the global context.
|
2013-11-15 19:47:02 +01:00
|
|
|
return g_context->Initialize(args, settings, application,
|
|
|
|
windows_sandbox_info);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefShutdown() {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must always be called on the same thread as Initialize.
|
2013-09-03 20:06:25 +02:00
|
|
|
if (!g_context->OnInitThread()) {
|
2012-04-03 03:34:16 +02:00
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shut down the global context. This will block until shutdown is complete.
|
2013-09-03 20:06:25 +02:00
|
|
|
g_context->Shutdown();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Delete the global context object.
|
2013-09-03 20:06:25 +02:00
|
|
|
delete g_context;
|
|
|
|
g_context = NULL;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefDoMessageLoopWork() {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must always be called on the same thread as Initialize.
|
2013-09-03 20:06:25 +02:00
|
|
|
if (!g_context->OnInitThread()) {
|
2012-04-03 03:34:16 +02:00
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefBrowserMessageLoop::current()->DoMessageLoopIteration();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefRunMessageLoop() {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must always be called on the same thread as Initialize.
|
2013-09-03 20:06:25 +02:00
|
|
|
if (!g_context->OnInitThread()) {
|
2012-04-03 03:34:16 +02:00
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefBrowserMessageLoop::current()->RunMessageLoop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefQuitMessageLoop() {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must always be called on the same thread as Initialize.
|
2013-09-03 20:06:25 +02:00
|
|
|
if (!g_context->OnInitThread()) {
|
2012-04-03 03:34:16 +02:00
|
|
|
NOTREACHED() << "called on invalid thread";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-10 21:18:16 +01:00
|
|
|
CefBrowserMessageLoop::current()->QuitWhenIdle();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2013-08-22 19:11:19 +02:00
|
|
|
void CefSetOSModalLoop(bool osModalLoop) {
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CEF_CURRENTLY_ON_UIT())
|
2013-08-23 16:34:43 +02:00
|
|
|
base::MessageLoop::current()->set_os_modal_loop(osModalLoop);
|
2013-08-22 19:11:19 +02:00
|
|
|
else
|
|
|
|
CEF_POST_TASK(CEF_UIT, base::Bind(CefSetOSModalLoop, osModalLoop));
|
|
|
|
#endif // defined(OS_WIN)
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// CefContext
|
|
|
|
|
|
|
|
CefContext::CefContext()
|
|
|
|
: initialized_(false),
|
|
|
|
shutting_down_(false),
|
2012-11-20 21:08:36 +01:00
|
|
|
init_thread_id_(0) {
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefContext::~CefContext() {
|
2013-09-03 20:06:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefContext* CefContext::Get() {
|
|
|
|
return g_context;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefContext::Initialize(const CefMainArgs& args,
|
|
|
|
const CefSettings& settings,
|
2013-11-15 19:47:02 +01:00
|
|
|
CefRefPtr<CefApp> application,
|
|
|
|
void* windows_sandbox_info) {
|
2012-04-03 03:34:16 +02:00
|
|
|
init_thread_id_ = base::PlatformThread::CurrentId();
|
|
|
|
settings_ = settings;
|
|
|
|
|
2012-04-11 20:00:55 +02:00
|
|
|
#if !defined(OS_WIN)
|
2012-04-03 03:34:16 +02:00
|
|
|
if (settings.multi_threaded_message_loop) {
|
2012-04-11 20:00:55 +02:00
|
|
|
NOTIMPLEMENTED() << "multi_threaded_message_loop is not supported.";
|
2012-04-03 03:34:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-04-11 20:00:55 +02:00
|
|
|
#endif
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
main_delegate_.reset(new CefMainDelegate(application));
|
|
|
|
main_runner_.reset(content::ContentMainRunner::Create());
|
|
|
|
|
|
|
|
int exit_code;
|
|
|
|
|
|
|
|
// Initialize the content runner.
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
sandbox::SandboxInterfaceInfo sandbox_info = {0};
|
2013-11-15 19:47:02 +01:00
|
|
|
if (windows_sandbox_info == NULL) {
|
|
|
|
content::InitializeSandboxInfo(&sandbox_info);
|
|
|
|
windows_sandbox_info = &sandbox_info;
|
|
|
|
settings_.no_sandbox = true;
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2014-04-04 18:50:38 +02:00
|
|
|
content::ContentMainParams params(main_delegate_.get());
|
|
|
|
params.instance = args.instance;
|
|
|
|
params.sandbox_info =
|
|
|
|
static_cast<sandbox::SandboxInterfaceInfo*>(windows_sandbox_info);
|
|
|
|
|
|
|
|
exit_code = main_runner_->Initialize(params);
|
2012-04-03 03:34:16 +02:00
|
|
|
#else
|
2014-04-04 18:50:38 +02:00
|
|
|
content::ContentMainParams params(main_delegate_.get());
|
|
|
|
params.argc = args.argc;
|
|
|
|
params.argv = const_cast<const char**>(args.argv);
|
|
|
|
|
|
|
|
exit_code = main_runner_->Initialize(params);
|
2012-04-03 03:34:16 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
DCHECK_LT(exit_code, 0);
|
|
|
|
if (exit_code >= 0)
|
|
|
|
return false;
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// Run the process. Results in a call to CefMainDelegate::RunProcess() which
|
|
|
|
// will create the browser runner and message loop without blocking.
|
2012-04-03 03:34:16 +02:00
|
|
|
exit_code = main_runner_->Run();
|
|
|
|
|
|
|
|
initialized_ = true;
|
|
|
|
|
2013-10-23 21:30:47 +02:00
|
|
|
if (CEF_CURRENTLY_ON_UIT()) {
|
|
|
|
OnContextInitialized();
|
|
|
|
} else {
|
|
|
|
// Continue initialization on the UI thread.
|
|
|
|
CEF_POST_TASK(CEF_UIT,
|
|
|
|
base::Bind(&CefContext::OnContextInitialized, base::Unretained(this)));
|
|
|
|
}
|
2012-05-18 17:04:56 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefContext::Shutdown() {
|
|
|
|
// Must always be called on the same thread as Initialize.
|
|
|
|
DCHECK(OnInitThread());
|
|
|
|
|
|
|
|
shutting_down_ = true;
|
|
|
|
|
|
|
|
if (settings_.multi_threaded_message_loop) {
|
|
|
|
// Events that will be used to signal when shutdown is complete. Start in
|
|
|
|
// non-signaled mode so that the event will block.
|
|
|
|
base::WaitableEvent uithread_shutdown_event(false, false);
|
|
|
|
|
|
|
|
// Finish shutdown on the UI thread.
|
|
|
|
CEF_POST_TASK(CEF_UIT,
|
2013-09-03 20:06:25 +02:00
|
|
|
base::Bind(&CefContext::FinishShutdownOnUIThread,
|
|
|
|
base::Unretained(this),
|
2012-04-11 20:00:55 +02:00
|
|
|
&uithread_shutdown_event));
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-04-11 20:00:55 +02:00
|
|
|
/// Block until UI thread shutdown is complete.
|
|
|
|
uithread_shutdown_event.Wait();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
FinalizeShutdown();
|
|
|
|
} else {
|
|
|
|
// Finish shutdown on the current thread, which should be the UI thread.
|
2012-04-11 20:00:55 +02:00
|
|
|
FinishShutdownOnUIThread(NULL);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
FinalizeShutdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefContext::OnInitThread() {
|
|
|
|
return (base::PlatformThread::CurrentId() == init_thread_id_);
|
|
|
|
}
|
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
CefTraceSubscriber* CefContext::GetTraceSubscriber() {
|
|
|
|
CEF_REQUIRE_UIT();
|
|
|
|
if (shutting_down_)
|
|
|
|
return NULL;
|
|
|
|
if (!trace_subscriber_.get())
|
|
|
|
trace_subscriber_.reset(new CefTraceSubscriber());
|
|
|
|
return trace_subscriber_.get();
|
|
|
|
}
|
|
|
|
|
2015-08-31 13:28:07 +02:00
|
|
|
component_updater::ComponentUpdateService*
|
|
|
|
CefContext::component_updater() {
|
|
|
|
if (!component_updater_.get()) {
|
|
|
|
CEF_REQUIRE_UIT_RETURN(NULL);
|
|
|
|
scoped_refptr<update_client::Configurator> configurator =
|
|
|
|
component_updater::MakeCefComponentUpdaterConfigurator(
|
|
|
|
base::CommandLine::ForCurrentProcess(),
|
|
|
|
CefContentBrowserClient::Get()->browser_context()->
|
|
|
|
request_context().get());
|
|
|
|
// Creating the component updater does not do anything, components
|
|
|
|
// need to be registered and Start() needs to be called.
|
|
|
|
component_updater_.reset(component_updater::ComponentUpdateServiceFactory(
|
|
|
|
configurator).release());
|
|
|
|
}
|
|
|
|
return component_updater_.get();
|
|
|
|
}
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
void CefContext::PopulateRequestContextSettings(
|
|
|
|
CefRequestContextSettings* settings) {
|
|
|
|
CefRefPtr<CefCommandLine> command_line =
|
|
|
|
CefCommandLine::GetGlobalCommandLine();
|
|
|
|
CefString(&settings->cache_path) = CefString(&settings_.cache_path);
|
|
|
|
settings->persist_session_cookies =
|
|
|
|
settings_.persist_session_cookies ||
|
|
|
|
command_line->HasSwitch(switches::kPersistSessionCookies);
|
2015-10-17 02:44:00 +02:00
|
|
|
settings->persist_user_preferences =
|
|
|
|
settings_.persist_user_preferences ||
|
|
|
|
command_line->HasSwitch(switches::kPersistUserPreferences);
|
2015-03-02 21:25:14 +01:00
|
|
|
settings->ignore_certificate_errors =
|
|
|
|
settings_.ignore_certificate_errors ||
|
|
|
|
command_line->HasSwitch(switches::kIgnoreCertificateErrors);
|
|
|
|
CefString(&settings->accept_language_list) =
|
|
|
|
CefString(&settings_.accept_language_list);
|
|
|
|
}
|
|
|
|
|
2015-08-31 13:28:07 +02:00
|
|
|
void RegisterComponentsForUpdate() {
|
|
|
|
component_updater::ComponentUpdateService* cus =
|
|
|
|
CefContext::Get()->component_updater();
|
|
|
|
|
|
|
|
// Registration can be before or after cus->Start() so it is ok to post
|
|
|
|
// a task to the UI thread to do registration once you done the necessary
|
|
|
|
// file IO to know you existing component version.
|
|
|
|
#if !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
|
|
|
|
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kEnableWidevineCdm)) {
|
|
|
|
RegisterWidevineCdmComponent(cus);
|
|
|
|
}
|
|
|
|
#endif // !defined(OS_CHROMEOS) && !defined(OS_ANDROID)
|
|
|
|
}
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
void CefContext::OnContextInitialized() {
|
|
|
|
CEF_REQUIRE_UIT();
|
|
|
|
|
2013-10-23 21:30:47 +02:00
|
|
|
// Must be created after the NotificationService.
|
|
|
|
print_job_manager_.reset(new printing::PrintJobManager());
|
|
|
|
|
2015-08-31 13:28:07 +02:00
|
|
|
bool io_was_allowed = base::ThreadRestrictions::SetIOAllowed(true);
|
|
|
|
RegisterComponentsForUpdate();
|
|
|
|
base::ThreadRestrictions::SetIOAllowed(io_was_allowed);
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// Notify the handler.
|
2013-09-03 18:43:31 +02:00
|
|
|
CefRefPtr<CefApp> app = CefContentClient::Get()->application();
|
2012-06-19 18:29:49 +02:00
|
|
|
if (app.get()) {
|
|
|
|
CefRefPtr<CefBrowserProcessHandler> handler =
|
|
|
|
app->GetBrowserProcessHandler();
|
|
|
|
if (handler.get())
|
|
|
|
handler->OnContextInitialized();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
void CefContext::FinishShutdownOnUIThread(
|
|
|
|
base::WaitableEvent* uithread_shutdown_event) {
|
|
|
|
CEF_REQUIRE_UIT();
|
|
|
|
|
2013-10-23 21:30:47 +02:00
|
|
|
// Wait for the pending print jobs to finish. Don't do this later, since
|
|
|
|
// this might cause a nested message loop to run, and we don't want pending
|
|
|
|
// tasks to run once teardown has started.
|
|
|
|
print_job_manager_->Shutdown();
|
|
|
|
print_job_manager_.reset(NULL);
|
|
|
|
|
2012-12-30 12:17:49 +01:00
|
|
|
CefContentBrowserClient::Get()->DestroyAllBrowsers();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-10-18 00:45:49 +02:00
|
|
|
if (trace_subscriber_.get())
|
|
|
|
trace_subscriber_.reset(NULL);
|
|
|
|
|
2012-04-11 20:00:55 +02:00
|
|
|
if (uithread_shutdown_event)
|
|
|
|
uithread_shutdown_event->Signal();
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefContext::FinalizeShutdown() {
|
2013-02-02 01:21:59 +01:00
|
|
|
if (content::RenderProcessHost::run_renderer_in_process()) {
|
|
|
|
// Blocks until RenderProcess cleanup is complete.
|
|
|
|
CefContentRendererClient::Get()->RunSingleProcessCleanup();
|
|
|
|
}
|
|
|
|
|
2012-04-11 20:00:55 +02:00
|
|
|
// Shut down the browser runner or UI thread.
|
2012-04-03 03:34:16 +02:00
|
|
|
main_delegate_->ShutdownBrowser();
|
|
|
|
|
|
|
|
// Shut down the content runner.
|
|
|
|
main_runner_->Shutdown();
|
|
|
|
|
|
|
|
main_runner_.reset(NULL);
|
|
|
|
main_delegate_.reset(NULL);
|
|
|
|
}
|