2015-07-16 23:40:01 +02:00
|
|
|
// Copyright 2015 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright 2014 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/extensions/mime_handler_view_guest_delegate.h"
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
#include "libcef/browser/alloy/alloy_browser_host_impl.h"
|
2020-06-28 20:29:44 +02:00
|
|
|
#include "libcef/browser/alloy/alloy_content_browser_client.h"
|
2017-02-14 23:27:19 +01:00
|
|
|
#include "libcef/browser/browser_context.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
#include "libcef/browser/browser_info.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
#include "libcef/browser/osr/web_contents_view_osr.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
|
|
|
|
#include "extensions/browser/guest_view/mime_handler_view/mime_handler_view_guest.h"
|
|
|
|
|
|
|
|
namespace extensions {
|
|
|
|
|
|
|
|
CefMimeHandlerViewGuestDelegate::CefMimeHandlerViewGuestDelegate(
|
|
|
|
MimeHandlerViewGuest* guest)
|
2020-01-23 22:58:01 +01:00
|
|
|
: guest_(guest), owner_web_contents_(guest_->owner_web_contents()) {}
|
2015-07-16 23:40:01 +02:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefMimeHandlerViewGuestDelegate::~CefMimeHandlerViewGuestDelegate() {}
|
2015-07-16 23:40:01 +02:00
|
|
|
|
|
|
|
void CefMimeHandlerViewGuestDelegate::OverrideWebContentsCreateParams(
|
|
|
|
content::WebContents::CreateParams* params) {
|
|
|
|
DCHECK(params->guest_delegate);
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
CefRefPtr<AlloyBrowserHostImpl> owner_browser =
|
|
|
|
AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_);
|
2020-01-23 22:58:01 +01:00
|
|
|
DCHECK(owner_browser);
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
if (owner_browser->IsWindowless()) {
|
2018-07-03 02:46:03 +02:00
|
|
|
CefWebContentsViewOSR* view_osr = new CefWebContentsViewOSR(
|
|
|
|
owner_browser->GetBackgroundColor(), false, false);
|
2015-07-16 23:40:01 +02:00
|
|
|
params->view = view_osr;
|
|
|
|
params->delegate_view = view_osr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-23 22:58:01 +01:00
|
|
|
void CefMimeHandlerViewGuestDelegate::OnGuestAttached() {
|
2015-07-16 23:40:01 +02:00
|
|
|
content::WebContents* web_contents = guest_->web_contents();
|
2015-07-24 02:06:56 +02:00
|
|
|
DCHECK(web_contents);
|
2015-07-16 23:40:01 +02:00
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
CefRefPtr<AlloyBrowserHostImpl> owner_browser =
|
|
|
|
AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_);
|
2020-01-23 22:58:01 +01:00
|
|
|
DCHECK(owner_browser);
|
|
|
|
|
2015-10-21 20:17:09 +02:00
|
|
|
// Associate guest state information with the owner browser.
|
2022-07-21 19:26:10 +02:00
|
|
|
owner_browser->browser_info()->MaybeCreateFrame(
|
|
|
|
web_contents->GetPrimaryMainFrame(), true /* is_guest_view */);
|
2015-07-24 02:06:56 +02:00
|
|
|
}
|
|
|
|
|
2020-01-23 22:58:01 +01:00
|
|
|
void CefMimeHandlerViewGuestDelegate::OnGuestDetached() {
|
2015-10-21 20:17:09 +02:00
|
|
|
content::WebContents* web_contents = guest_->web_contents();
|
|
|
|
DCHECK(web_contents);
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
CefRefPtr<AlloyBrowserHostImpl> owner_browser =
|
|
|
|
AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_);
|
2020-01-23 22:58:01 +01:00
|
|
|
DCHECK(owner_browser);
|
|
|
|
|
2015-10-21 20:17:09 +02:00
|
|
|
// Disassociate guest state information with the owner browser.
|
2022-07-21 19:26:10 +02:00
|
|
|
owner_browser->browser_info()->RemoveFrame(
|
|
|
|
web_contents->GetPrimaryMainFrame());
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefMimeHandlerViewGuestDelegate::HandleContextMenu(
|
2021-11-10 22:57:31 +01:00
|
|
|
content::RenderFrameHost& render_frame_host,
|
2015-07-16 23:40:01 +02:00
|
|
|
const content::ContextMenuParams& params) {
|
2020-09-22 21:54:02 +02:00
|
|
|
CefRefPtr<AlloyBrowserHostImpl> owner_browser =
|
|
|
|
AlloyBrowserHostImpl::GetBrowserForContents(owner_web_contents_);
|
2020-01-23 22:58:01 +01:00
|
|
|
DCHECK(owner_browser);
|
|
|
|
|
2022-05-27 11:03:31 +02:00
|
|
|
return owner_browser->ShowContextMenu(params);
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace extensions
|