2020-09-18 00:24:08 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright (c) 2011 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 "include/cef_browser.h"
|
2020-09-22 21:54:02 +02:00
|
|
|
#include "libcef/browser/alloy/alloy_browser_host_impl.h"
|
2020-09-18 00:24:08 +02:00
|
|
|
#include "libcef/browser/chrome/chrome_browser_host_impl.h"
|
|
|
|
#include "libcef/browser/context.h"
|
|
|
|
#include "libcef/browser/thread_util.h"
|
|
|
|
#include "libcef/features/runtime.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class CreateBrowserHelper {
|
|
|
|
public:
|
|
|
|
CreateBrowserHelper(const CefWindowInfo& windowInfo,
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefDictionaryValue> extra_info,
|
|
|
|
CefRefPtr<CefRequestContext> request_context)
|
|
|
|
: window_info_(windowInfo),
|
|
|
|
client_(client),
|
|
|
|
url_(url),
|
|
|
|
settings_(settings),
|
|
|
|
extra_info_(extra_info),
|
|
|
|
request_context_(request_context) {}
|
|
|
|
|
2021-04-15 01:28:22 +02:00
|
|
|
void Run() {
|
|
|
|
CefBrowserHost::CreateBrowserSync(window_info_, client_, url_, settings_,
|
|
|
|
extra_info_, request_context_);
|
|
|
|
}
|
|
|
|
|
2020-09-18 00:24:08 +02:00
|
|
|
CefWindowInfo window_info_;
|
|
|
|
CefRefPtr<CefClient> client_;
|
|
|
|
CefString url_;
|
|
|
|
CefBrowserSettings settings_;
|
|
|
|
CefRefPtr<CefDictionaryValue> extra_info_;
|
|
|
|
CefRefPtr<CefRequestContext> request_context_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool CefBrowserHost::CreateBrowser(
|
|
|
|
const CefWindowInfo& windowInfo,
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefDictionaryValue> extra_info,
|
|
|
|
CefRefPtr<CefRequestContext> request_context) {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify that the settings structure is a valid size.
|
|
|
|
if (settings.size != sizeof(cef_browser_settings_t)) {
|
|
|
|
NOTREACHED() << "invalid CefBrowserSettings structure size";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify windowless rendering requirements.
|
|
|
|
if (windowInfo.windowless_rendering_enabled &&
|
|
|
|
!client->GetRenderHandler().get()) {
|
|
|
|
NOTREACHED() << "CefRenderHandler implementation is required";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (windowInfo.windowless_rendering_enabled &&
|
|
|
|
!CefContext::Get()->settings().windowless_rendering_enabled) {
|
|
|
|
LOG(ERROR) << "Creating a windowless browser without setting "
|
|
|
|
"CefSettings.windowless_rendering_enabled may result in "
|
|
|
|
"reduced performance or runtime errors.";
|
|
|
|
}
|
|
|
|
|
2021-04-15 01:28:22 +02:00
|
|
|
if (!request_context) {
|
|
|
|
request_context = CefRequestContext::GetGlobalContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto helper = std::make_unique<CreateBrowserHelper>(
|
2020-09-18 00:24:08 +02:00
|
|
|
windowInfo, client, url, settings, extra_info, request_context);
|
2021-04-15 01:28:22 +02:00
|
|
|
|
|
|
|
auto request_context_impl =
|
|
|
|
static_cast<CefRequestContextImpl*>(request_context.get());
|
|
|
|
|
|
|
|
// Wait for the browser context to be initialized before creating the browser.
|
|
|
|
request_context_impl->ExecuteWhenBrowserContextInitialized(base::BindOnce(
|
2021-04-29 23:07:36 +02:00
|
|
|
[](std::unique_ptr<CreateBrowserHelper> helper) {
|
|
|
|
// Always execute asynchronously to avoid potential issues if we're
|
|
|
|
// being called synchronously during app initialization.
|
|
|
|
CEF_POST_TASK(CEF_UIT, base::BindOnce(&CreateBrowserHelper::Run,
|
|
|
|
std::move(helper)));
|
|
|
|
},
|
2021-04-15 01:28:22 +02:00
|
|
|
std::move(helper)));
|
2020-09-18 00:24:08 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowser> CefBrowserHost::CreateBrowserSync(
|
|
|
|
const CefWindowInfo& windowInfo,
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
const CefString& url,
|
|
|
|
const CefBrowserSettings& settings,
|
|
|
|
CefRefPtr<CefDictionaryValue> extra_info,
|
|
|
|
CefRefPtr<CefRequestContext> request_context) {
|
|
|
|
// Verify that the context is in a valid state.
|
|
|
|
if (!CONTEXT_STATE_VALID()) {
|
|
|
|
NOTREACHED() << "context not valid";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify that the settings structure is a valid size.
|
|
|
|
if (settings.size != sizeof(cef_browser_settings_t)) {
|
|
|
|
NOTREACHED() << "invalid CefBrowserSettings structure size";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-04-15 01:28:22 +02:00
|
|
|
// Verify that the browser context is valid.
|
|
|
|
auto request_context_impl =
|
|
|
|
static_cast<CefRequestContextImpl*>(request_context.get());
|
|
|
|
if (!request_context_impl->VerifyBrowserContext()) {
|
2020-09-18 00:24:08 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify windowless rendering requirements.
|
|
|
|
if (windowInfo.windowless_rendering_enabled &&
|
|
|
|
!client->GetRenderHandler().get()) {
|
|
|
|
NOTREACHED() << "CefRenderHandler implementation is required";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
CefBrowserCreateParams create_params;
|
2020-09-18 00:24:08 +02:00
|
|
|
create_params.window_info.reset(new CefWindowInfo(windowInfo));
|
|
|
|
create_params.client = client;
|
2021-04-15 01:28:22 +02:00
|
|
|
create_params.url = url;
|
2020-09-18 00:24:08 +02:00
|
|
|
create_params.settings = settings;
|
|
|
|
create_params.extra_info = extra_info;
|
|
|
|
create_params.request_context = request_context;
|
|
|
|
|
2021-02-18 02:58:25 +01:00
|
|
|
return CefBrowserHostBase::Create(create_params);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
CefRefPtr<CefBrowserHostBase> CefBrowserHostBase::Create(
|
|
|
|
CefBrowserCreateParams& create_params) {
|
2020-09-18 00:24:08 +02:00
|
|
|
if (cef::IsChromeRuntimeEnabled()) {
|
|
|
|
auto browser = ChromeBrowserHostImpl::Create(create_params);
|
|
|
|
return browser.get();
|
|
|
|
}
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
auto browser = AlloyBrowserHostImpl::Create(create_params);
|
2020-09-18 00:24:08 +02:00
|
|
|
return browser.get();
|
|
|
|
}
|