2020-07-04 20:21:34 +02:00
|
|
|
// Copyright 2015 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/alloy/browser_platform_delegate_alloy.h"
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
#include "libcef/browser/alloy/alloy_browser_host_impl.h"
|
2022-06-02 11:49:50 +02:00
|
|
|
#include "libcef/browser/alloy/dialogs/alloy_javascript_dialog_manager_delegate.h"
|
2020-07-04 20:21:34 +02:00
|
|
|
#include "libcef/browser/extensions/browser_extensions_util.h"
|
|
|
|
#include "libcef/browser/extensions/extension_background_host.h"
|
|
|
|
#include "libcef/browser/extensions/extension_system.h"
|
|
|
|
#include "libcef/browser/extensions/extension_view_host.h"
|
|
|
|
#include "libcef/browser/extensions/extension_web_contents_observer.h"
|
|
|
|
#include "libcef/common/extensions/extensions_util.h"
|
2021-04-15 01:28:22 +02:00
|
|
|
#include "libcef/common/net/url_util.h"
|
2020-09-25 03:40:47 +02:00
|
|
|
#include "libcef/features/runtime_checks.h"
|
2020-07-04 20:21:34 +02:00
|
|
|
|
|
|
|
#include "base/logging.h"
|
|
|
|
#include "chrome/browser/printing/print_view_manager.h"
|
|
|
|
#include "chrome/browser/ui/prefs/prefs_tab_helper.h"
|
2022-02-17 19:17:29 +01:00
|
|
|
#include "components/find_in_page/find_tab_helper.h"
|
|
|
|
#include "components/find_in_page/find_types.h"
|
2022-06-02 11:49:50 +02:00
|
|
|
#include "components/javascript_dialogs/tab_modal_dialog_manager.h"
|
2022-07-07 12:01:24 +02:00
|
|
|
#include "components/permissions/permission_request_manager.h"
|
2020-07-04 20:21:34 +02:00
|
|
|
#include "components/zoom/zoom_controller.h"
|
|
|
|
#include "content/browser/renderer_host/render_widget_host_impl.h"
|
|
|
|
#include "content/browser/web_contents/web_contents_impl.h"
|
|
|
|
#include "content/public/browser/render_view_host.h"
|
|
|
|
#include "extensions/browser/process_manager.h"
|
2022-02-18 17:33:40 +01:00
|
|
|
#include "pdf/pdf_features.h"
|
2020-07-04 20:21:34 +02:00
|
|
|
#include "third_party/blink/public/mojom/frame/find_in_page.mojom.h"
|
|
|
|
|
|
|
|
CefBrowserPlatformDelegateAlloy::CefBrowserPlatformDelegateAlloy()
|
|
|
|
: weak_ptr_factory_(this) {}
|
|
|
|
|
|
|
|
content::WebContents* CefBrowserPlatformDelegateAlloy::CreateWebContents(
|
2020-09-25 03:40:47 +02:00
|
|
|
CefBrowserCreateParams& create_params,
|
2020-07-04 20:21:34 +02:00
|
|
|
bool& own_web_contents) {
|
2020-09-25 03:40:47 +02:00
|
|
|
REQUIRE_ALLOY_RUNTIME();
|
|
|
|
DCHECK(primary_);
|
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
// Get or create the request context and browser context.
|
|
|
|
CefRefPtr<CefRequestContextImpl> request_context_impl =
|
|
|
|
CefRequestContextImpl::GetOrCreateForRequestContext(
|
|
|
|
create_params.request_context);
|
|
|
|
CHECK(request_context_impl);
|
|
|
|
auto cef_browser_context = request_context_impl->GetBrowserContext();
|
|
|
|
CHECK(cef_browser_context);
|
|
|
|
auto browser_context = cef_browser_context->AsBrowserContext();
|
|
|
|
|
|
|
|
if (!create_params.request_context) {
|
|
|
|
// Using the global request context.
|
|
|
|
create_params.request_context = request_context_impl.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
scoped_refptr<content::SiteInstance> site_instance;
|
2021-04-15 01:28:22 +02:00
|
|
|
if (extensions::ExtensionsEnabled() && !create_params.url.empty()) {
|
|
|
|
GURL gurl = url_util::MakeGURL(create_params.url, /*fixup=*/true);
|
2020-07-04 20:21:34 +02:00
|
|
|
if (!create_params.extension) {
|
|
|
|
// We might be loading an extension app view where the extension URL is
|
|
|
|
// provided by the client.
|
|
|
|
create_params.extension =
|
2021-04-15 01:28:22 +02:00
|
|
|
extensions::GetExtensionForUrl(browser_context, gurl);
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
if (create_params.extension) {
|
2021-04-21 00:52:34 +02:00
|
|
|
if (create_params.extension_host_type ==
|
|
|
|
extensions::mojom::ViewType::kInvalid) {
|
2020-07-04 20:21:34 +02:00
|
|
|
// Default to dialog behavior.
|
|
|
|
create_params.extension_host_type =
|
2021-04-21 00:52:34 +02:00
|
|
|
extensions::mojom::ViewType::kExtensionDialog;
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extension resources will fail to load if we don't use a SiteInstance
|
|
|
|
// associated with the extension.
|
|
|
|
// (AlloyContentBrowserClient::SiteInstanceGotProcess won't find the
|
|
|
|
// extension to register with InfoMap, and AllowExtensionResourceLoad in
|
|
|
|
// ExtensionProtocolHandler::MaybeCreateJob will return false resulting in
|
|
|
|
// ERR_BLOCKED_BY_CLIENT).
|
|
|
|
site_instance = extensions::ProcessManager::Get(browser_context)
|
2021-04-15 01:28:22 +02:00
|
|
|
->GetSiteInstanceForURL(gurl);
|
2020-07-04 20:21:34 +02:00
|
|
|
DCHECK(site_instance);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
content::WebContents::CreateParams wc_create_params(browser_context,
|
|
|
|
site_instance);
|
|
|
|
|
|
|
|
if (IsWindowless()) {
|
|
|
|
// Create the OSR view for the WebContents.
|
|
|
|
CreateViewForWebContents(&wc_create_params.view,
|
|
|
|
&wc_create_params.delegate_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto web_contents = content::WebContents::Create(wc_create_params);
|
|
|
|
CHECK(web_contents);
|
|
|
|
|
|
|
|
own_web_contents = true;
|
|
|
|
return web_contents.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::WebContentsCreated(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
bool owned) {
|
|
|
|
CefBrowserPlatformDelegate::WebContentsCreated(web_contents, owned);
|
|
|
|
|
2022-04-08 22:48:56 +02:00
|
|
|
if (primary_) {
|
|
|
|
find_in_page::FindTabHelper::CreateForWebContents(web_contents);
|
|
|
|
|
|
|
|
if (owned) {
|
|
|
|
SetOwnedWebContents(web_contents);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DCHECK(!owned);
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::AddNewContents(
|
|
|
|
content::WebContents* source,
|
|
|
|
std::unique_ptr<content::WebContents> new_contents,
|
|
|
|
const GURL& target_url,
|
|
|
|
WindowOpenDisposition disposition,
|
2022-09-26 21:30:45 +02:00
|
|
|
const blink::mojom::WindowFeatures& window_features,
|
2020-07-04 20:21:34 +02:00
|
|
|
bool user_gesture,
|
|
|
|
bool* was_blocked) {
|
2020-09-25 03:40:47 +02:00
|
|
|
REQUIRE_ALLOY_RUNTIME();
|
|
|
|
DCHECK(primary_);
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
CefRefPtr<AlloyBrowserHostImpl> owner =
|
|
|
|
AlloyBrowserHostImpl::GetBrowserForContents(new_contents.get());
|
2020-07-04 20:21:34 +02:00
|
|
|
if (owner) {
|
|
|
|
// Taking ownership of |new_contents|.
|
|
|
|
static_cast<CefBrowserPlatformDelegateAlloy*>(
|
|
|
|
owner->platform_delegate_.get())
|
|
|
|
->SetOwnedWebContents(new_contents.release());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extension_host_) {
|
|
|
|
extension_host_->AddNewContents(source, std::move(new_contents), target_url,
|
2022-09-26 21:30:45 +02:00
|
|
|
disposition, window_features, user_gesture,
|
2020-07-04 20:21:34 +02:00
|
|
|
was_blocked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-23 18:40:13 +02:00
|
|
|
bool CefBrowserPlatformDelegateAlloy::
|
|
|
|
ShouldAllowRendererInitiatedCrossProcessNavigation(
|
|
|
|
bool is_main_frame_navigation) {
|
2020-07-04 20:21:34 +02:00
|
|
|
if (extension_host_) {
|
2021-07-23 18:40:13 +02:00
|
|
|
return extension_host_->ShouldAllowRendererInitiatedCrossProcessNavigation(
|
|
|
|
is_main_frame_navigation);
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::RenderViewReady() {
|
|
|
|
ConfigureAutoResize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::BrowserCreated(
|
2020-09-25 03:40:47 +02:00
|
|
|
CefBrowserHostBase* browser) {
|
2020-07-04 20:21:34 +02:00
|
|
|
CefBrowserPlatformDelegate::BrowserCreated(browser);
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
// Only register WebContents delegate/observers if we're the primary delegate.
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!primary_) {
|
2020-09-25 03:40:47 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-09-25 03:40:47 +02:00
|
|
|
|
|
|
|
DCHECK(!web_contents_->GetDelegate());
|
|
|
|
web_contents_->SetDelegate(static_cast<AlloyBrowserHostImpl*>(browser));
|
2020-07-04 20:21:34 +02:00
|
|
|
|
2022-07-07 12:01:24 +02:00
|
|
|
permissions::PermissionRequestManager::CreateForWebContents(web_contents_);
|
2020-07-04 20:21:34 +02:00
|
|
|
PrefsTabHelper::CreateForWebContents(web_contents_);
|
2022-10-12 23:53:06 +02:00
|
|
|
printing::PrintViewManager::CreateForWebContents(web_contents_);
|
2023-10-05 01:46:45 +02:00
|
|
|
zoom::ZoomController::CreateForWebContents(web_contents_);
|
2020-07-04 20:21:34 +02:00
|
|
|
|
2022-06-02 11:49:50 +02:00
|
|
|
javascript_dialogs::TabModalDialogManager::CreateForWebContents(
|
|
|
|
web_contents_,
|
|
|
|
CreateAlloyJavaScriptTabModalDialogManagerDelegateDesktop(web_contents_));
|
|
|
|
|
|
|
|
// Used for print preview and JavaScript dialogs.
|
|
|
|
web_contents_dialog_helper_.reset(
|
|
|
|
new AlloyWebContentsDialogHelper(web_contents_, this));
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::CreateExtensionHost(
|
|
|
|
const extensions::Extension* extension,
|
|
|
|
const GURL& url,
|
2021-04-21 00:52:34 +02:00
|
|
|
extensions::mojom::ViewType host_type) {
|
2020-09-25 03:40:47 +02:00
|
|
|
REQUIRE_ALLOY_RUNTIME();
|
|
|
|
DCHECK(primary_);
|
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
// Should get WebContentsCreated and BrowserCreated calls first.
|
|
|
|
DCHECK(web_contents_);
|
|
|
|
DCHECK(browser_);
|
|
|
|
DCHECK(!extension_host_);
|
|
|
|
|
2020-09-25 03:40:47 +02:00
|
|
|
auto alloy_browser = static_cast<AlloyBrowserHostImpl*>(browser_);
|
|
|
|
|
2021-04-21 00:52:34 +02:00
|
|
|
if (host_type == extensions::mojom::ViewType::kExtensionDialog ||
|
|
|
|
host_type == extensions::mojom::ViewType::kExtensionPopup) {
|
2020-07-04 20:21:34 +02:00
|
|
|
// Create an extension host that we own.
|
|
|
|
extension_host_ = new extensions::CefExtensionViewHost(
|
2020-09-25 03:40:47 +02:00
|
|
|
alloy_browser, extension, web_contents_, url, host_type);
|
2020-07-04 20:21:34 +02:00
|
|
|
// Trigger load of the extension URL.
|
2021-03-04 23:36:57 +01:00
|
|
|
extension_host_->CreateRendererSoon();
|
2021-04-21 00:52:34 +02:00
|
|
|
} else if (host_type ==
|
|
|
|
extensions::mojom::ViewType::kExtensionBackgroundPage) {
|
2020-07-04 20:21:34 +02:00
|
|
|
is_background_host_ = true;
|
2020-09-25 03:40:47 +02:00
|
|
|
alloy_browser->is_background_host_ = true;
|
2020-07-04 20:21:34 +02:00
|
|
|
// Create an extension host that will be owned by ProcessManager.
|
|
|
|
extension_host_ = new extensions::CefExtensionBackgroundHost(
|
2020-09-25 03:40:47 +02:00
|
|
|
alloy_browser,
|
2020-07-04 20:21:34 +02:00
|
|
|
base::BindOnce(&CefBrowserPlatformDelegateAlloy::OnExtensionHostDeleted,
|
|
|
|
weak_ptr_factory_.GetWeakPtr()),
|
|
|
|
extension, web_contents_, url, host_type);
|
|
|
|
// Load will be triggered by ProcessManager::CreateBackgroundHost.
|
|
|
|
} else {
|
2023-05-08 17:07:57 +02:00
|
|
|
DCHECK(false) << " Unsupported extension host type: " << host_type;
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions::ExtensionHost* CefBrowserPlatformDelegateAlloy::GetExtensionHost()
|
|
|
|
const {
|
|
|
|
return extension_host_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::BrowserDestroyed(
|
2020-09-25 03:40:47 +02:00
|
|
|
CefBrowserHostBase* browser) {
|
|
|
|
if (primary_) {
|
|
|
|
DestroyExtensionHost();
|
|
|
|
owned_web_contents_.reset();
|
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
|
|
|
CefBrowserPlatformDelegate::BrowserDestroyed(browser);
|
|
|
|
}
|
|
|
|
|
2022-06-02 11:49:50 +02:00
|
|
|
web_modal::WebContentsModalDialogHost*
|
|
|
|
CefBrowserPlatformDelegateAlloy::GetWebContentsModalDialogHost() const {
|
|
|
|
return web_contents_dialog_helper_.get();
|
|
|
|
}
|
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
void CefBrowserPlatformDelegateAlloy::SendCaptureLostEvent() {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!web_contents_) {
|
2020-07-08 19:23:29 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-08 19:23:29 +02:00
|
|
|
content::RenderViewHost* host = web_contents_->GetRenderViewHost();
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!host) {
|
2020-07-08 19:23:29 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-08 19:23:29 +02:00
|
|
|
|
|
|
|
content::RenderWidgetHostImpl* widget =
|
|
|
|
content::RenderWidgetHostImpl::From(host->GetWidget());
|
2023-01-02 23:59:03 +01:00
|
|
|
if (widget) {
|
2020-07-04 20:21:34 +02:00
|
|
|
widget->LostCapture();
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
|
2022-01-24 18:58:02 +01:00
|
|
|
#if BUILDFLAG(IS_WIN) || (BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_MAC))
|
2020-07-04 20:21:34 +02:00
|
|
|
void CefBrowserPlatformDelegateAlloy::NotifyMoveOrResizeStarted() {
|
2023-01-06 19:33:32 +01:00
|
|
|
if (!browser_) {
|
2020-07-08 19:23:29 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-08 19:23:29 +02:00
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
// Dismiss any existing popups.
|
2023-01-06 19:33:32 +01:00
|
|
|
auto frame = browser_->GetMainFrame();
|
|
|
|
if (frame && frame->IsValid()) {
|
|
|
|
static_cast<CefFrameHostImpl*>(frame.get())->NotifyMoveOrResizeStarted();
|
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool CefBrowserPlatformDelegateAlloy::PreHandleGestureEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const blink::WebGestureEvent& event) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (extension_host_) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return extension_host_->PreHandleGestureEvent(source, event);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserPlatformDelegateAlloy::IsNeverComposited(
|
|
|
|
content::WebContents* web_contents) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (extension_host_) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return extension_host_->IsNeverComposited(web_contents);
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::SetAutoResizeEnabled(
|
|
|
|
bool enabled,
|
|
|
|
const CefSize& min_size,
|
|
|
|
const CefSize& max_size) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (enabled == auto_resize_enabled_) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
|
|
|
auto_resize_enabled_ = enabled;
|
|
|
|
if (enabled) {
|
|
|
|
auto_resize_min_ = gfx::Size(min_size.width, min_size.height);
|
|
|
|
auto_resize_max_ = gfx::Size(max_size.width, max_size.height);
|
|
|
|
} else {
|
|
|
|
auto_resize_min_ = auto_resize_max_ = gfx::Size();
|
|
|
|
}
|
|
|
|
ConfigureAutoResize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::ConfigureAutoResize() {
|
|
|
|
if (!web_contents_ || !web_contents_->GetRenderWidgetHostView()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto_resize_enabled_) {
|
|
|
|
web_contents_->GetRenderWidgetHostView()->EnableAutoResize(
|
|
|
|
auto_resize_min_, auto_resize_max_);
|
|
|
|
} else {
|
|
|
|
web_contents_->GetRenderWidgetHostView()->DisableAutoResize(gfx::Size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::SetAccessibilityState(
|
|
|
|
cef_state_t accessibility_state) {
|
|
|
|
// Do nothing if state is set to default. It'll be disabled by default and
|
|
|
|
// controlled by the commmand-line flags "force-renderer-accessibility" and
|
|
|
|
// "disable-renderer-accessibility".
|
2023-01-02 23:59:03 +01:00
|
|
|
if (accessibility_state == STATE_DEFAULT) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
|
|
|
content::WebContentsImpl* web_contents_impl =
|
|
|
|
static_cast<content::WebContentsImpl*>(web_contents_);
|
|
|
|
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!web_contents_impl) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
|
|
|
ui::AXMode accMode;
|
|
|
|
// In windowless mode set accessibility to TreeOnly mode. Else native
|
|
|
|
// accessibility APIs, specific to each platform, are also created.
|
|
|
|
if (accessibility_state == STATE_ENABLED) {
|
|
|
|
accMode = IsWindowless() ? ui::kAXModeWebContentsOnly : ui::kAXModeComplete;
|
|
|
|
}
|
|
|
|
web_contents_impl->SetAccessibilityMode(accMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserPlatformDelegateAlloy::IsPrintPreviewSupported() const {
|
2020-09-25 03:40:47 +02:00
|
|
|
REQUIRE_ALLOY_RUNTIME();
|
|
|
|
|
2022-02-18 17:33:40 +01:00
|
|
|
// Print preview is not currently supported with OSR.
|
2023-01-02 23:59:03 +01:00
|
|
|
if (IsWindowless()) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
2022-02-18 17:33:40 +01:00
|
|
|
auto cef_browser_context =
|
|
|
|
CefBrowserContext::FromBrowserContext(web_contents_->GetBrowserContext());
|
|
|
|
return cef_browser_context->IsPrintPreviewSupported();
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
|
2022-02-17 19:17:29 +01:00
|
|
|
void CefBrowserPlatformDelegateAlloy::Find(const CefString& searchText,
|
2020-07-04 20:21:34 +02:00
|
|
|
bool forward,
|
|
|
|
bool matchCase,
|
|
|
|
bool findNext) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!web_contents_) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
2022-02-17 19:17:29 +01:00
|
|
|
find_in_page::FindTabHelper::FromWebContents(web_contents_)
|
|
|
|
->StartFinding(searchText.ToString16(), forward, matchCase, findNext,
|
|
|
|
/*run_synchronously_for_testing=*/false);
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::StopFinding(bool clearSelection) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!web_contents_) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
|
2022-02-17 19:17:29 +01:00
|
|
|
last_search_result_ = find_in_page::FindNotificationDetails();
|
|
|
|
find_in_page::FindTabHelper::FromWebContents(web_contents_)
|
|
|
|
->StopFinding(clearSelection ? find_in_page::SelectionAction::kClear
|
|
|
|
: find_in_page::SelectionAction::kKeep);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefBrowserPlatformDelegateAlloy::HandleFindReply(
|
|
|
|
int request_id,
|
|
|
|
int number_of_matches,
|
|
|
|
const gfx::Rect& selection_rect,
|
|
|
|
int active_match_ordinal,
|
|
|
|
bool final_update) {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!web_contents_) {
|
2022-02-17 19:17:29 +01:00
|
|
|
return false;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2022-02-17 19:17:29 +01:00
|
|
|
|
|
|
|
auto find_in_page =
|
|
|
|
find_in_page::FindTabHelper::FromWebContents(web_contents_);
|
|
|
|
|
|
|
|
find_in_page->HandleFindReply(request_id, number_of_matches, selection_rect,
|
|
|
|
active_match_ordinal, final_update);
|
|
|
|
if (!(find_in_page->find_result() == last_search_result_)) {
|
|
|
|
last_search_result_ = find_in_page->find_result();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2020-07-04 20:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
base::RepeatingClosure
|
|
|
|
CefBrowserPlatformDelegateAlloy::GetBoundsChangedCallback() {
|
|
|
|
if (web_contents_dialog_helper_) {
|
|
|
|
return web_contents_dialog_helper_->GetBoundsChangedCallback();
|
|
|
|
}
|
|
|
|
|
|
|
|
return base::RepeatingClosure();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::SetOwnedWebContents(
|
|
|
|
content::WebContents* owned_contents) {
|
2020-09-25 03:40:47 +02:00
|
|
|
DCHECK(primary_);
|
|
|
|
|
2020-07-04 20:21:34 +02:00
|
|
|
// Should not currently own a WebContents.
|
|
|
|
CHECK(!owned_web_contents_);
|
|
|
|
owned_web_contents_.reset(owned_contents);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::DestroyExtensionHost() {
|
2023-01-02 23:59:03 +01:00
|
|
|
if (!extension_host_) {
|
2020-07-04 20:21:34 +02:00
|
|
|
return;
|
2023-01-02 23:59:03 +01:00
|
|
|
}
|
2020-07-04 20:21:34 +02:00
|
|
|
if (extension_host_->extension_host_type() ==
|
2021-04-21 00:52:34 +02:00
|
|
|
extensions::mojom::ViewType::kExtensionBackgroundPage) {
|
2020-07-04 20:21:34 +02:00
|
|
|
DCHECK(is_background_host_);
|
|
|
|
// Close notification for background pages arrives via CloseContents.
|
|
|
|
// The extension host will be deleted by
|
|
|
|
// ProcessManager::CloseBackgroundHost and OnExtensionHostDeleted will be
|
|
|
|
// called to notify us.
|
|
|
|
extension_host_->Close();
|
|
|
|
} else {
|
|
|
|
DCHECK(!is_background_host_);
|
|
|
|
// We own the extension host and must delete it.
|
|
|
|
delete extension_host_;
|
|
|
|
extension_host_ = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefBrowserPlatformDelegateAlloy::OnExtensionHostDeleted() {
|
|
|
|
DCHECK(is_background_host_);
|
|
|
|
DCHECK(extension_host_);
|
|
|
|
extension_host_ = nullptr;
|
|
|
|
}
|