2020-09-18 00:24:08 +02:00
|
|
|
// Copyright 2020 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 <memory>
|
|
|
|
|
|
|
|
#include "libcef/browser/chrome/chrome_browser_delegate.h"
|
|
|
|
|
|
|
|
#include "libcef/browser/browser_contents_delegate.h"
|
|
|
|
#include "libcef/browser/browser_host_base.h"
|
|
|
|
#include "libcef/browser/browser_info_manager.h"
|
2020-09-25 03:40:47 +02:00
|
|
|
#include "libcef/browser/browser_platform_delegate.h"
|
2020-09-18 00:24:08 +02:00
|
|
|
#include "libcef/browser/chrome/chrome_browser_host_impl.h"
|
2023-09-07 19:28:27 +02:00
|
|
|
#include "libcef/browser/chrome/views/chrome_browser_view.h"
|
2022-07-08 09:40:35 +02:00
|
|
|
#include "libcef/browser/media_access_query.h"
|
2020-09-18 00:24:08 +02:00
|
|
|
#include "libcef/browser/request_context_impl.h"
|
2023-09-07 19:28:27 +02:00
|
|
|
#include "libcef/browser/views/browser_view_impl.h"
|
2023-09-25 21:40:17 +02:00
|
|
|
#include "libcef/browser/views/window_impl.h"
|
2020-09-18 00:24:08 +02:00
|
|
|
#include "libcef/common/app_manager.h"
|
2021-08-19 23:07:44 +02:00
|
|
|
#include "libcef/common/frame_util.h"
|
2020-09-18 00:24:08 +02:00
|
|
|
|
|
|
|
#include "chrome/browser/profiles/profile.h"
|
|
|
|
#include "chrome/browser/ui/browser.h"
|
2021-04-02 22:53:17 +02:00
|
|
|
#include "chrome/browser/ui/browser_tabstrip.h"
|
2021-08-19 23:07:44 +02:00
|
|
|
#include "content/public/browser/global_routing_id.h"
|
2020-09-25 03:40:47 +02:00
|
|
|
#include "content/public/browser/keyboard_event_processing_result.h"
|
2023-09-15 21:51:43 +02:00
|
|
|
#include "content/public/common/input/native_web_keyboard_event.h"
|
2020-09-25 03:40:47 +02:00
|
|
|
|
|
|
|
using content::KeyboardEventProcessingResult;
|
2020-09-18 00:24:08 +02:00
|
|
|
|
|
|
|
ChromeBrowserDelegate::ChromeBrowserDelegate(
|
|
|
|
Browser* browser,
|
2023-09-07 19:28:27 +02:00
|
|
|
const CefBrowserCreateParams& create_params,
|
|
|
|
const Browser* opener)
|
2020-09-18 00:24:08 +02:00
|
|
|
: browser_(browser), create_params_(create_params) {
|
|
|
|
DCHECK(browser_);
|
2023-09-07 19:28:27 +02:00
|
|
|
|
|
|
|
if (opener) {
|
|
|
|
DCHECK(browser->is_type_picture_in_picture());
|
|
|
|
auto opener_host = ChromeBrowserHostImpl::GetBrowserForBrowser(opener);
|
|
|
|
DCHECK(opener_host);
|
|
|
|
if (opener_host) {
|
|
|
|
opener_host_ = opener_host->GetWeakPtr();
|
|
|
|
}
|
|
|
|
}
|
2020-09-18 00:24:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ChromeBrowserDelegate::~ChromeBrowserDelegate() = default;
|
|
|
|
|
2023-02-09 19:15:15 +01:00
|
|
|
std::unique_ptr<content::WebContents> ChromeBrowserDelegate::AddWebContents(
|
|
|
|
std::unique_ptr<content::WebContents> new_contents) {
|
|
|
|
if (CefBrowserInfoManager::GetInstance()->AddWebContents(
|
|
|
|
new_contents.get())) {
|
|
|
|
// The browser host should have been created in WebContentsCreated().
|
|
|
|
auto new_browser =
|
|
|
|
ChromeBrowserHostImpl::GetBrowserForContents(new_contents.get());
|
|
|
|
if (new_browser) {
|
|
|
|
// Create a new Browser and give it ownership of the new WebContents.
|
|
|
|
new_browser->AddNewContents(std::move(new_contents));
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "No host found for chrome popup browser";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proceed with default chrome::AddWebContents behavior.
|
|
|
|
return new_contents;
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
void ChromeBrowserDelegate::OnWebContentsCreated(
|
|
|
|
content::WebContents* new_contents) {
|
|
|
|
// Necessary to receive LoadingStateChanged calls during initial navigation.
|
|
|
|
// This will be called again in Browser::SetAsDelegate, which should be fine.
|
|
|
|
new_contents->SetDelegate(browser_);
|
|
|
|
|
|
|
|
SetAsDelegate(new_contents, /*set_delegate=*/true);
|
|
|
|
}
|
|
|
|
|
2020-09-18 00:24:08 +02:00
|
|
|
void ChromeBrowserDelegate::SetAsDelegate(content::WebContents* web_contents,
|
|
|
|
bool set_delegate) {
|
|
|
|
DCHECK(web_contents);
|
|
|
|
auto browser_host =
|
|
|
|
ChromeBrowserHostImpl::GetBrowserForContents(web_contents);
|
|
|
|
|
|
|
|
// |set_delegate=false| only makes sense if we already have a browser host.
|
|
|
|
DCHECK(browser_host || set_delegate);
|
|
|
|
|
|
|
|
if (browser_host) {
|
|
|
|
// We already have a browser host, so just change the associated Browser.
|
|
|
|
browser_host->SetBrowser(set_delegate ? browser_ : nullptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
auto platform_delegate = CefBrowserPlatformDelegate::Create(create_params_);
|
|
|
|
CHECK(platform_delegate);
|
|
|
|
|
|
|
|
auto browser_info = CefBrowserInfoManager::GetInstance()->CreateBrowserInfo(
|
|
|
|
/*is_popup=*/false, /*is_windowless=*/false, create_params_.extra_info);
|
|
|
|
|
2020-09-18 00:24:08 +02:00
|
|
|
auto request_context_impl =
|
|
|
|
CefRequestContextImpl::GetOrCreateForRequestContext(
|
|
|
|
create_params_.request_context);
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
CreateBrowser(web_contents, create_params_.settings, create_params_.client,
|
2021-04-02 22:53:17 +02:00
|
|
|
std::move(platform_delegate), browser_info, /*opener=*/nullptr,
|
2020-09-25 03:40:47 +02:00
|
|
|
request_context_impl);
|
|
|
|
}
|
2020-09-18 00:24:08 +02:00
|
|
|
|
2022-03-21 22:22:07 +01:00
|
|
|
bool ChromeBrowserDelegate::ShowStatusBubble(bool show_by_default) {
|
|
|
|
if (!show_status_bubble_.has_value()) {
|
|
|
|
show_status_bubble_ = show_by_default;
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
const auto& state = browser->settings().chrome_status_bubble;
|
|
|
|
if (show_by_default && state == STATE_DISABLED) {
|
|
|
|
show_status_bubble_ = false;
|
|
|
|
} else if (!show_by_default && state == STATE_ENABLED) {
|
|
|
|
show_status_bubble_ = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *show_status_bubble_;
|
|
|
|
}
|
|
|
|
|
2022-03-22 19:31:30 +01:00
|
|
|
bool ChromeBrowserDelegate::HandleCommand(int command_id,
|
|
|
|
WindowOpenDisposition disposition) {
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
if (auto client = browser->GetClient()) {
|
|
|
|
if (auto handler = client->GetCommandHandler()) {
|
|
|
|
return handler->OnChromeCommand(
|
|
|
|
browser.get(), command_id,
|
|
|
|
static_cast<cef_window_open_disposition_t>(disposition));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-03-07 00:21:57 +01:00
|
|
|
bool ChromeBrowserDelegate::IsAppMenuItemVisible(int command_id) {
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
if (auto client = browser->GetClient()) {
|
|
|
|
if (auto handler = client->GetCommandHandler()) {
|
|
|
|
return handler->IsChromeAppMenuItemVisible(browser.get(), command_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChromeBrowserDelegate::IsAppMenuItemEnabled(int command_id) {
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
if (auto client = browser->GetClient()) {
|
|
|
|
if (auto handler = client->GetCommandHandler()) {
|
|
|
|
return handler->IsChromeAppMenuItemEnabled(browser.get(), command_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChromeBrowserDelegate::IsPageActionIconVisible(
|
|
|
|
PageActionIconType icon_type) {
|
|
|
|
// Verify that our enum matches Chromium's values.
|
|
|
|
static_assert(static_cast<int>(CEF_CPAIT_MAX_VALUE) ==
|
|
|
|
static_cast<int>(PageActionIconType::kMaxValue),
|
|
|
|
"enum mismatch");
|
|
|
|
|
|
|
|
if (auto client = create_params_.client) {
|
|
|
|
if (auto handler = client->GetCommandHandler()) {
|
|
|
|
return handler->IsChromePageActionIconVisible(
|
|
|
|
static_cast<cef_chrome_page_action_icon_type_t>(icon_type));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChromeBrowserDelegate::IsToolbarButtonVisible(
|
|
|
|
ToolbarButtonType button_type) {
|
|
|
|
// Verify that our enum matches BrowserDelegate's values.
|
|
|
|
static_assert(static_cast<int>(CEF_CTBT_MAX_VALUE) ==
|
|
|
|
static_cast<int>(ToolbarButtonType::kMaxValue),
|
|
|
|
"enum mismatch");
|
|
|
|
|
|
|
|
if (auto client = create_params_.client) {
|
|
|
|
if (auto handler = client->GetCommandHandler()) {
|
|
|
|
return handler->IsChromeToolbarButtonVisible(
|
|
|
|
static_cast<cef_chrome_toolbar_button_type_t>(button_type));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-12 20:34:39 +02:00
|
|
|
void ChromeBrowserDelegate::UpdateFindBarBoundingBox(gfx::Rect* bounds) {
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
browser->platform_delegate()->UpdateFindBarBoundingBox(bounds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-08 09:40:35 +02:00
|
|
|
content::MediaResponseCallback
|
|
|
|
ChromeBrowserDelegate::RequestMediaAccessPermissionEx(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
const content::MediaStreamRequest& request,
|
|
|
|
content::MediaResponseCallback callback) {
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
return media_access_query::RequestMediaAccessPermission(
|
|
|
|
browser.get(), request, std::move(callback),
|
|
|
|
/*default_disallow=*/false);
|
|
|
|
}
|
|
|
|
return callback;
|
|
|
|
}
|
|
|
|
|
2023-09-07 19:28:27 +02:00
|
|
|
bool ChromeBrowserDelegate::SupportsFramelessPictureInPicture() const {
|
|
|
|
if (!browser_->is_type_picture_in_picture()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frameless_pip_.has_value()) {
|
|
|
|
return *frameless_pip_;
|
|
|
|
}
|
|
|
|
|
|
|
|
frameless_pip_ = false;
|
|
|
|
|
|
|
|
if (opener_host_) {
|
|
|
|
if (auto chrome_browser_view = opener_host_->chrome_browser_view()) {
|
|
|
|
if (auto cef_delegate = chrome_browser_view->cef_delegate()) {
|
|
|
|
frameless_pip_ = cef_delegate->UseFramelessWindowForPictureInPicture(
|
|
|
|
chrome_browser_view->cef_browser_view());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *frameless_pip_;
|
|
|
|
}
|
|
|
|
|
|
|
|
absl::optional<bool> ChromeBrowserDelegate::SupportsWindowFeature(
|
|
|
|
int feature) const {
|
|
|
|
// Override the default value from
|
|
|
|
// Browser::PictureInPictureBrowserSupportsWindowFeature.
|
|
|
|
if (feature == Browser::FEATURE_TITLEBAR &&
|
|
|
|
browser_->is_type_picture_in_picture()) {
|
|
|
|
// Return false to hide titlebar and enable draggable regions.
|
|
|
|
return !SupportsFramelessPictureInPicture();
|
|
|
|
}
|
|
|
|
return absl::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChromeBrowserDelegate::SupportsDraggableRegion() const {
|
|
|
|
return SupportsFramelessPictureInPicture();
|
|
|
|
}
|
|
|
|
|
|
|
|
const absl::optional<SkRegion> ChromeBrowserDelegate::GetDraggableRegion()
|
|
|
|
const {
|
|
|
|
DCHECK(SupportsDraggableRegion());
|
|
|
|
return draggable_region_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChromeBrowserDelegate::UpdateDraggableRegion(const SkRegion& region) {
|
|
|
|
DCHECK(SupportsDraggableRegion());
|
|
|
|
draggable_region_ = region;
|
|
|
|
}
|
|
|
|
|
2023-09-25 21:40:17 +02:00
|
|
|
void ChromeBrowserDelegate::WindowFullscreenStateChanged() {
|
|
|
|
// Use a synchronous callback for notification on Windows/Linux. MacOS gets
|
|
|
|
// notified asynchronously via CefNativeWidgetMac callbacks.
|
|
|
|
#if !BUILDFLAG(IS_MAC)
|
|
|
|
if (auto browser = ChromeBrowserHostImpl::GetBrowserForBrowser(browser_)) {
|
|
|
|
if (auto chrome_browser_view = browser->chrome_browser_view()) {
|
|
|
|
auto* cef_window = chrome_browser_view->cef_browser_view()->cef_window();
|
|
|
|
if (auto* delegate = cef_window->delegate()) {
|
|
|
|
// Give the CefWindowDelegate a chance to handle the event.
|
|
|
|
delegate->OnWindowFullscreenTransition(cef_window,
|
|
|
|
/*is_completed=*/true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
void ChromeBrowserDelegate::WebContentsCreated(
|
|
|
|
content::WebContents* source_contents,
|
|
|
|
int opener_render_process_id,
|
|
|
|
int opener_render_frame_id,
|
|
|
|
const std::string& frame_name,
|
|
|
|
const GURL& target_url,
|
|
|
|
content::WebContents* new_contents) {
|
|
|
|
CefBrowserSettings settings;
|
|
|
|
CefRefPtr<CefClient> client;
|
|
|
|
std::unique_ptr<CefBrowserPlatformDelegate> platform_delegate;
|
|
|
|
CefRefPtr<CefDictionaryValue> extra_info;
|
2020-09-18 00:24:08 +02:00
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
CefBrowserInfoManager::GetInstance()->WebContentsCreated(
|
2021-08-19 23:07:44 +02:00
|
|
|
target_url,
|
|
|
|
frame_util::MakeGlobalId(opener_render_process_id,
|
|
|
|
opener_render_frame_id),
|
2023-02-09 19:15:15 +01:00
|
|
|
settings, client, platform_delegate, extra_info, new_contents);
|
2020-09-25 03:40:47 +02:00
|
|
|
|
|
|
|
auto opener = ChromeBrowserHostImpl::GetBrowserForContents(source_contents);
|
|
|
|
if (!opener) {
|
|
|
|
LOG(ERROR) << "No opener found for chrome popup browser";
|
|
|
|
return;
|
2020-09-18 00:24:08 +02:00
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
auto browser_info =
|
|
|
|
CefBrowserInfoManager::GetInstance()->CreatePopupBrowserInfo(
|
|
|
|
new_contents, /*is_windowless=*/false, extra_info);
|
|
|
|
CHECK(browser_info->is_popup());
|
2020-09-18 00:24:08 +02:00
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
// Popups must share the same RequestContext as the parent.
|
|
|
|
auto request_context_impl = opener->request_context();
|
|
|
|
CHECK(request_context_impl);
|
|
|
|
|
|
|
|
// We don't officially own |new_contents| until AddNewContents() is called.
|
|
|
|
// However, we need to install observers/delegates here.
|
|
|
|
CreateBrowser(new_contents, settings, client, std::move(platform_delegate),
|
2021-04-02 22:53:17 +02:00
|
|
|
browser_info, opener, request_context_impl);
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
content::WebContents* ChromeBrowserDelegate::OpenURLFromTab(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::OpenURLParams& params) {
|
2022-01-14 19:52:56 +01:00
|
|
|
// |source| may be nullptr when opening a link from chrome UI such as the
|
|
|
|
// Reading List sidebar. In that case we default to using the Browser's
|
|
|
|
// currently active WebContents.
|
|
|
|
if (!source) {
|
|
|
|
source = browser_->tab_strip_model()->GetActiveWebContents();
|
|
|
|
DCHECK(source);
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
// Return nullptr to cancel the navigation. Otherwise, proceed with default
|
|
|
|
// chrome handling.
|
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
|
|
|
return delegate->OpenURLFromTab(source, params);
|
|
|
|
}
|
|
|
|
return nullptr;
|
2020-09-18 00:24:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChromeBrowserDelegate::LoadingStateChanged(content::WebContents* source,
|
2021-12-16 23:35:54 +01:00
|
|
|
bool should_show_loading_ui) {
|
2020-09-18 00:24:08 +02:00
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
2021-12-16 23:35:54 +01:00
|
|
|
delegate->LoadingStateChanged(source, should_show_loading_ui);
|
2020-09-18 00:24:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChromeBrowserDelegate::UpdateTargetURL(content::WebContents* source,
|
|
|
|
const GURL& url) {
|
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
|
|
|
delegate->UpdateTargetURL(source, url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChromeBrowserDelegate::DidAddMessageToConsole(
|
|
|
|
content::WebContents* source,
|
|
|
|
blink::mojom::ConsoleMessageLevel log_level,
|
2021-04-21 00:52:34 +02:00
|
|
|
const std::u16string& message,
|
2020-09-18 00:24:08 +02:00
|
|
|
int32_t line_no,
|
2021-04-21 00:52:34 +02:00
|
|
|
const std::u16string& source_id) {
|
2020-09-18 00:24:08 +02:00
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
|
|
|
return delegate->DidAddMessageToConsole(source, log_level, message, line_no,
|
|
|
|
source_id);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChromeBrowserDelegate::EnterFullscreenModeForTab(
|
|
|
|
content::RenderFrameHost* requesting_frame,
|
|
|
|
const blink::mojom::FullscreenOptions& options) {
|
|
|
|
auto web_contents =
|
|
|
|
content::WebContents::FromRenderFrameHost(requesting_frame);
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!web_contents) {
|
2020-09-18 00:24:08 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-09-18 00:24:08 +02:00
|
|
|
|
|
|
|
if (auto delegate = GetDelegateForWebContents(web_contents)) {
|
|
|
|
delegate->EnterFullscreenModeForTab(requesting_frame, options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChromeBrowserDelegate::ExitFullscreenModeForTab(
|
|
|
|
content::WebContents* web_contents) {
|
|
|
|
if (auto delegate = GetDelegateForWebContents(web_contents)) {
|
|
|
|
delegate->ExitFullscreenModeForTab(web_contents);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-22 22:40:28 +01:00
|
|
|
void ChromeBrowserDelegate::CanDownload(
|
|
|
|
const GURL& url,
|
|
|
|
const std::string& request_method,
|
|
|
|
base::OnceCallback<void(bool)> callback) {
|
|
|
|
auto source = browser_->tab_strip_model()->GetActiveWebContents();
|
|
|
|
DCHECK(source);
|
|
|
|
|
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
|
|
|
delegate->CanDownload(url, request_method, std::move(callback));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::move(callback).Run(true);
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
KeyboardEventProcessingResult ChromeBrowserDelegate::PreHandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
|
|
|
return delegate->PreHandleKeyboardEvent(source, event);
|
|
|
|
}
|
|
|
|
return KeyboardEventProcessingResult::NOT_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ChromeBrowserDelegate::HandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
|
|
|
if (auto delegate = GetDelegateForWebContents(source)) {
|
|
|
|
return delegate->HandleKeyboardEvent(source, event);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChromeBrowserDelegate::CreateBrowser(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
CefBrowserSettings settings,
|
|
|
|
CefRefPtr<CefClient> client,
|
|
|
|
std::unique_ptr<CefBrowserPlatformDelegate> platform_delegate,
|
|
|
|
scoped_refptr<CefBrowserInfo> browser_info,
|
2021-04-02 22:53:17 +02:00
|
|
|
CefRefPtr<ChromeBrowserHostImpl> opener,
|
2020-09-25 03:40:47 +02:00
|
|
|
CefRefPtr<CefRequestContextImpl> request_context_impl) {
|
|
|
|
CEF_REQUIRE_UIT();
|
|
|
|
DCHECK(web_contents);
|
|
|
|
DCHECK(platform_delegate);
|
|
|
|
DCHECK(browser_info);
|
|
|
|
DCHECK(request_context_impl);
|
|
|
|
|
2021-04-02 22:53:17 +02:00
|
|
|
// If |opener| is non-nullptr it must be a popup window.
|
|
|
|
DCHECK(!opener.get() || browser_info->is_popup());
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
if (!client) {
|
|
|
|
if (auto app = CefAppManager::Get()->GetApplication()) {
|
|
|
|
if (auto bph = app->GetBrowserProcessHandler()) {
|
|
|
|
client = bph->GetDefaultClient();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!client) {
|
|
|
|
LOG(WARNING) << "Creating a chrome browser without a client";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if chrome and CEF are using the same browser context.
|
|
|
|
// TODO(chrome-runtime): Verify if/when this might occur.
|
|
|
|
auto chrome_browser_context =
|
|
|
|
CefBrowserContext::FromBrowserContext(browser_->create_params().profile);
|
|
|
|
if (chrome_browser_context != request_context_impl->GetBrowserContext()) {
|
|
|
|
LOG(WARNING) << "Creating a chrome browser with mismatched context";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remains alive until the associated WebContents is destroyed.
|
|
|
|
CefRefPtr<ChromeBrowserHostImpl> browser_host =
|
|
|
|
new ChromeBrowserHostImpl(settings, client, std::move(platform_delegate),
|
|
|
|
browser_info, request_context_impl);
|
2021-04-02 22:53:17 +02:00
|
|
|
browser_host->Attach(web_contents, opener);
|
|
|
|
|
|
|
|
// The Chrome browser for a popup won't be created until AddNewContents().
|
|
|
|
if (!opener) {
|
|
|
|
browser_host->SetBrowser(browser_);
|
|
|
|
}
|
2020-09-25 03:40:47 +02:00
|
|
|
}
|
|
|
|
|
2020-09-18 00:24:08 +02:00
|
|
|
CefBrowserContentsDelegate* ChromeBrowserDelegate::GetDelegateForWebContents(
|
|
|
|
content::WebContents* web_contents) {
|
|
|
|
auto browser_host =
|
|
|
|
ChromeBrowserHostImpl::GetBrowserForContents(web_contents);
|
2023-01-02 23:59:03 +01:00
|
|
|
if (browser_host) {
|
2020-09-18 00:24:08 +02:00
|
|
|
return browser_host->contents_delegate();
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-09-18 00:24:08 +02:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace cef {
|
|
|
|
|
|
|
|
// static
|
|
|
|
std::unique_ptr<BrowserDelegate> BrowserDelegate::Create(
|
|
|
|
Browser* browser,
|
2023-09-07 19:28:27 +02:00
|
|
|
scoped_refptr<CreateParams> cef_params,
|
|
|
|
const Browser* opener) {
|
|
|
|
if (!cef::IsChromeRuntimeEnabled()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
CefBrowserCreateParams create_params;
|
2020-09-18 00:24:08 +02:00
|
|
|
|
|
|
|
// Parameters from ChromeBrowserHostImpl::Create, or nullptr if the Browser
|
|
|
|
// was created from somewhere else.
|
|
|
|
auto params = static_cast<ChromeBrowserHostImpl::DelegateCreateParams*>(
|
|
|
|
cef_params.get());
|
|
|
|
if (params) {
|
|
|
|
create_params = params->create_params_;
|
2021-02-18 02:58:25 +01:00
|
|
|
|
|
|
|
// Clear these values so they're not persisted to additional Browsers.
|
2022-04-08 22:48:56 +02:00
|
|
|
params->create_params_.window_info.reset();
|
2021-02-18 02:58:25 +01:00
|
|
|
params->create_params_.browser_view = nullptr;
|
2020-09-18 00:24:08 +02:00
|
|
|
}
|
|
|
|
|
2023-09-07 19:28:27 +02:00
|
|
|
return std::make_unique<ChromeBrowserDelegate>(browser, create_params,
|
|
|
|
opener);
|
2020-09-18 00:24:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace cef
|