mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-05 12:18:20 +01:00
- CefRequestContext instances can be configured using a new CefRequestContextSettings structure passed to CefRequestContext::CreateContext. - Scheme registration is now per-request-context using new CefRequestContext::RegisterSchemeHandlerFactory and ClearSchemeHandlerFactories methods. - Cookie managers are now per-request-context by default and can be retrieved using a new CefRequestContext::GetDefaultCookieManager method. - CefURLRequest::Create now accepts an optional CefRequestContext argument for associating a URL request with a context (browser process only). - The CefRequestContextHandler associated with a CefRequestContext will not be released until all objects related to that context have been destroyed. - When the cache path is empty an in-memory cache ("incognito mode") will be used for storage and no data will be persisted to disk. - Add CefSettings.user_data_path which specifies the location where user data such as spell checking dictionary files will be stored on disk. - Add asynchronous callbacks for all CefCookieManager methods. - Add PK_LOCAL_APP_DATA and PK_USER_DATA path keys for retrieving user directories via CefGetPath. - cefclient: Add "New Window" test that creates a new window unrelated to existing windows. When used in combination with `--request-context-per-browser` the new window will be given a new and isolated request context. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2040 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
174 lines
5.2 KiB
C++
174 lines
5.2 KiB
C++
// Copyright (c) 2012 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 "libcef/browser/browser_main.h"
|
|
|
|
#include <string>
|
|
|
|
#include "libcef/browser/browser_context_impl.h"
|
|
#include "libcef/browser/browser_context_proxy.h"
|
|
#include "libcef/browser/browser_message_loop.h"
|
|
#include "libcef/browser/content_browser_client.h"
|
|
#include "libcef/browser/context.h"
|
|
#include "libcef/browser/devtools_delegate.h"
|
|
#include "libcef/browser/thread_util.h"
|
|
#include "libcef/common/net_resource_provider.h"
|
|
|
|
#include "base/bind.h"
|
|
#include "base/command_line.h"
|
|
#include "base/message_loop/message_loop.h"
|
|
#include "base/strings/string_number_conversions.h"
|
|
#include "content/browser/webui/content_web_ui_controller_factory.h"
|
|
#include "content/public/browser/gpu_data_manager.h"
|
|
#include "content/public/browser/web_ui_controller_factory.h"
|
|
#include "content/public/common/content_switches.h"
|
|
#include "net/base/net_module.h"
|
|
#include "net/proxy/proxy_resolver_v8.h"
|
|
#include "ui/base/resource/resource_bundle.h"
|
|
|
|
#if defined(USE_AURA)
|
|
#include "ui/aura/env.h"
|
|
#include "ui/gfx/screen.h"
|
|
#include "ui/views/test/desktop_test_views_delegate.h"
|
|
#include "ui/views/widget/desktop_aura/desktop_screen.h"
|
|
|
|
#if defined(OS_WIN)
|
|
#include "ui/base/cursor/cursor_loader_win.h"
|
|
#endif
|
|
#endif // defined(USE_AURA)
|
|
|
|
#if defined(USE_AURA) && defined(OS_LINUX)
|
|
#include "ui/base/ime/input_method_initializer.h"
|
|
#endif
|
|
|
|
#if defined(OS_LINUX)
|
|
#include "libcef/browser/printing/print_dialog_linux.h"
|
|
#endif
|
|
|
|
CefBrowserMainParts::CefBrowserMainParts(
|
|
const content::MainFunctionParams& parameters)
|
|
: BrowserMainParts(),
|
|
devtools_delegate_(NULL) {
|
|
}
|
|
|
|
CefBrowserMainParts::~CefBrowserMainParts() {
|
|
}
|
|
|
|
void CefBrowserMainParts::PreMainMessageLoopStart() {
|
|
if (!base::MessageLoop::current()) {
|
|
// Create the browser message loop.
|
|
message_loop_.reset(new CefBrowserMessageLoop());
|
|
message_loop_->set_thread_name("CrBrowserMain");
|
|
}
|
|
}
|
|
|
|
void CefBrowserMainParts::PreEarlyInitialization() {
|
|
#if defined(USE_AURA) && defined(OS_LINUX)
|
|
// TODO(linux): Consider using a real input method or
|
|
// views::LinuxUI::SetInstance.
|
|
ui::InitializeInputMethodForTesting();
|
|
#endif
|
|
}
|
|
|
|
void CefBrowserMainParts::ToolkitInitialized() {
|
|
#if defined(USE_AURA)
|
|
CHECK(aura::Env::GetInstance());
|
|
|
|
DCHECK(!views::ViewsDelegate::views_delegate);
|
|
new views::DesktopTestViewsDelegate;
|
|
|
|
#if defined(OS_WIN)
|
|
ui::CursorLoaderWin::SetCursorResourceModule(
|
|
CefContentBrowserClient::Get()->GetResourceDllName());
|
|
#endif
|
|
#endif // defined(USE_AURA)
|
|
}
|
|
|
|
void CefBrowserMainParts::PostMainMessageLoopStart() {
|
|
// Don't use the default WebUI controller factory because is conflicts with
|
|
// CEF's internal handling of "chrome://tracing".
|
|
content::WebUIControllerFactory::UnregisterFactoryForTesting(
|
|
content::ContentWebUIControllerFactory::GetInstance());
|
|
|
|
#if defined(OS_LINUX)
|
|
printing::PrintingContextLinux::SetCreatePrintDialogFunction(
|
|
&CefPrintDialogLinux::CreatePrintDialog);
|
|
#endif
|
|
}
|
|
|
|
int CefBrowserMainParts::PreCreateThreads() {
|
|
PlatformInitialize();
|
|
net::NetModule::SetResourceProvider(&NetResourceProvider);
|
|
|
|
// Initialize the GpuDataManager before IO access restrictions are applied and
|
|
// before the IO thread is started.
|
|
content::GpuDataManager::GetInstance();
|
|
|
|
#if defined(USE_AURA)
|
|
gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE,
|
|
views::CreateDesktopScreen());
|
|
#endif
|
|
|
|
// Initialize user preferences.
|
|
pref_store_ = new CefBrowserPrefStore();
|
|
pref_store_->SetInitializationCompleted();
|
|
pref_service_ = pref_store_->CreateService().Pass();
|
|
|
|
// Initialize the V8 proxy integration.
|
|
net::ProxyResolverV8::EnsureIsolateCreated();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void CefBrowserMainParts::PreMainMessageLoopRun() {
|
|
CefRequestContextSettings settings;
|
|
CefContext::Get()->PopulateRequestContextSettings(&settings);
|
|
|
|
// Create the global BrowserContext.
|
|
global_browser_context_ = new CefBrowserContextImpl(settings);
|
|
global_browser_context_->Initialize();
|
|
|
|
const base::CommandLine* command_line =
|
|
base::CommandLine::ForCurrentProcess();
|
|
if (command_line->HasSwitch(switches::kRemoteDebuggingPort)) {
|
|
std::string port_str =
|
|
command_line->GetSwitchValueASCII(switches::kRemoteDebuggingPort);
|
|
int port;
|
|
if (base::StringToInt(port_str, &port) && port > 0 && port < 65535) {
|
|
devtools_delegate_ =
|
|
new CefDevToolsDelegate(static_cast<uint16>(port));
|
|
} else {
|
|
LOG(WARNING) << "Invalid http debugger port number " << port;
|
|
}
|
|
}
|
|
}
|
|
|
|
void CefBrowserMainParts::PostMainMessageLoopRun() {
|
|
if (devtools_delegate_) {
|
|
devtools_delegate_->Stop();
|
|
devtools_delegate_ = NULL;
|
|
}
|
|
|
|
global_browser_context_ = NULL;
|
|
|
|
#ifndef NDEBUG
|
|
// No CefBrowserContext instances should exist at this point.
|
|
DCHECK_EQ(0, CefBrowserContext::DebugObjCt);
|
|
#endif
|
|
}
|
|
|
|
void CefBrowserMainParts::PostDestroyThreads() {
|
|
#if defined(USE_AURA)
|
|
aura::Env::DeleteInstance();
|
|
delete views::ViewsDelegate::views_delegate;
|
|
#endif
|
|
|
|
#ifndef NDEBUG
|
|
// No CefURLRequestContext instances should exist at this point.
|
|
DCHECK_EQ(0, CefURLRequestContext::DebugObjCt);
|
|
#endif
|
|
|
|
PlatformCleanup();
|
|
}
|