2015-06-25 06:28:13 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/web_view_guest_delegate.h"
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2018-09-15 00:16:22 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2019-03-05 05:08:55 +00:00
|
|
|
#include "content/browser/web_contents/web_contents_impl.h" // nogncheck
|
2016-07-14 00:19:28 +00:00
|
|
|
#include "content/public/browser/navigation_handle.h"
|
2015-08-05 11:50:23 +00:00
|
|
|
#include "content/public/browser/render_frame_host.h"
|
2018-08-16 22:57:40 +00:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2015-06-25 06:28:13 +00:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2016-03-08 14:28:53 +00:00
|
|
|
#include "content/public/browser/render_widget_host.h"
|
2015-06-25 06:28:13 +00:00
|
|
|
#include "content/public/browser/render_widget_host_view.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/browser/api/electron_api_web_contents.h"
|
2019-10-18 19:57:34 +00:00
|
|
|
#include "third_party/blink/public/common/page/page_zoom.h"
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
WebViewGuestDelegate::WebViewGuestDelegate(content::WebContents* embedder,
|
|
|
|
api::WebContents* api_web_contents)
|
|
|
|
: embedder_web_contents_(embedder), api_web_contents_(api_web_contents) {}
|
2015-09-07 23:54:07 +00:00
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
WebViewGuestDelegate::~WebViewGuestDelegate() {
|
2017-11-30 15:09:05 +00:00
|
|
|
ResetZoomController();
|
2015-06-25 06:28:13 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
void WebViewGuestDelegate::AttachToIframe(
|
|
|
|
content::WebContents* embedder_web_contents,
|
|
|
|
int embedder_frame_id) {
|
|
|
|
embedder_web_contents_ = embedder_web_contents;
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
int embedder_process_id =
|
|
|
|
embedder_web_contents_->GetMainFrame()->GetProcess()->GetID();
|
|
|
|
auto* embedder_frame =
|
|
|
|
content::RenderFrameHost::FromID(embedder_process_id, embedder_frame_id);
|
|
|
|
DCHECK_EQ(embedder_web_contents_,
|
|
|
|
content::WebContents::FromRenderFrameHost(embedder_frame));
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2019-01-10 16:24:43 +00:00
|
|
|
content::WebContents* guest_web_contents = api_web_contents_->web_contents();
|
2018-08-16 22:57:40 +00:00
|
|
|
// Attach this inner WebContents |guest_web_contents| to the outer
|
|
|
|
// WebContents |embedder_web_contents|. The outer WebContents's
|
|
|
|
// frame |embedder_frame| hosts the inner WebContents.
|
2019-03-07 01:25:13 +00:00
|
|
|
embedder_web_contents_->AttachInnerWebContents(
|
2019-01-10 16:24:43 +00:00
|
|
|
base::WrapUnique<content::WebContents>(guest_web_contents),
|
2019-12-11 00:22:35 +00:00
|
|
|
embedder_frame, false);
|
2017-11-30 15:09:05 +00:00
|
|
|
|
|
|
|
ResetZoomController();
|
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
embedder_zoom_controller_ =
|
|
|
|
WebContentsZoomController::FromWebContents(embedder_web_contents_);
|
|
|
|
embedder_zoom_controller_->AddObserver(this);
|
2018-08-16 22:57:40 +00:00
|
|
|
auto* zoom_controller = api_web_contents_->GetZoomController();
|
2017-01-31 09:15:45 +00:00
|
|
|
zoom_controller->SetEmbedderZoomController(embedder_zoom_controller_);
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
api_web_contents_->Emit("did-attach");
|
2015-06-25 06:28:13 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
void WebViewGuestDelegate::DidDetach() {
|
|
|
|
ResetZoomController();
|
2015-06-25 06:28:13 +00:00
|
|
|
}
|
|
|
|
|
2019-07-03 01:22:09 +00:00
|
|
|
content::WebContents* WebViewGuestDelegate::GetOwnerWebContents() {
|
2018-08-16 22:57:40 +00:00
|
|
|
return embedder_web_contents_;
|
2015-06-25 06:28:13 +00:00
|
|
|
}
|
2017-01-30 11:18:40 +00:00
|
|
|
|
|
|
|
void WebViewGuestDelegate::OnZoomLevelChanged(
|
|
|
|
content::WebContents* web_contents,
|
2017-01-30 17:06:50 +00:00
|
|
|
double level,
|
|
|
|
bool is_temporary) {
|
2017-01-30 11:18:40 +00:00
|
|
|
if (web_contents == GetOwnerWebContents()) {
|
2017-01-30 17:06:50 +00:00
|
|
|
if (is_temporary) {
|
|
|
|
api_web_contents_->GetZoomController()->SetTemporaryZoomLevel(level);
|
|
|
|
} else {
|
|
|
|
api_web_contents_->GetZoomController()->SetZoomLevel(level);
|
|
|
|
}
|
2017-01-31 09:15:45 +00:00
|
|
|
// Change the default zoom factor to match the embedders' new zoom level.
|
2019-10-18 19:57:34 +00:00
|
|
|
double zoom_factor = blink::PageZoomFactorToZoomLevel(level);
|
2017-01-31 09:15:45 +00:00
|
|
|
api_web_contents_->GetZoomController()->SetDefaultZoomFactor(zoom_factor);
|
2017-01-30 11:18:40 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-25 06:28:13 +00:00
|
|
|
|
2018-08-16 22:57:40 +00:00
|
|
|
void WebViewGuestDelegate::OnZoomControllerWebContentsDestroyed() {
|
|
|
|
ResetZoomController();
|
2015-06-25 06:28:13 +00:00
|
|
|
}
|
|
|
|
|
2017-11-30 15:09:05 +00:00
|
|
|
void WebViewGuestDelegate::ResetZoomController() {
|
|
|
|
if (embedder_zoom_controller_) {
|
|
|
|
embedder_zoom_controller_->RemoveObserver(this);
|
|
|
|
embedder_zoom_controller_ = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-25 01:44:58 +00:00
|
|
|
content::RenderWidgetHost* WebViewGuestDelegate::GetOwnerRenderWidgetHost() {
|
|
|
|
return embedder_web_contents_->GetRenderViewHost()->GetWidget();
|
|
|
|
}
|
|
|
|
|
|
|
|
content::SiteInstance* WebViewGuestDelegate::GetOwnerSiteInstance() {
|
|
|
|
return embedder_web_contents_->GetSiteInstance();
|
|
|
|
}
|
|
|
|
|
2017-05-23 20:26:19 +00:00
|
|
|
content::WebContents* WebViewGuestDelegate::CreateNewGuestWindow(
|
|
|
|
const content::WebContents::CreateParams& create_params) {
|
2017-05-23 23:06:16 +00:00
|
|
|
// Code below mirrors what content::WebContentsImpl::CreateNewWindow
|
|
|
|
// does for non-guest sources
|
2017-05-23 20:26:19 +00:00
|
|
|
content::WebContents::CreateParams guest_params(create_params);
|
|
|
|
guest_params.context = embedder_web_contents_->GetNativeView();
|
2018-09-15 00:16:22 +00:00
|
|
|
std::unique_ptr<content::WebContents> guest_contents =
|
|
|
|
content::WebContents::Create(guest_params);
|
|
|
|
content::RenderWidgetHost* render_widget_host =
|
|
|
|
guest_contents->GetRenderViewHost()->GetWidget();
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* guest_contents_impl =
|
2018-09-15 00:16:22 +00:00
|
|
|
static_cast<content::WebContentsImpl*>(guest_contents.release());
|
2019-12-11 00:22:35 +00:00
|
|
|
guest_contents_impl->GetView()->CreateViewForWidget(render_widget_host);
|
2017-05-23 20:26:19 +00:00
|
|
|
|
2018-09-15 00:16:22 +00:00
|
|
|
return guest_contents_impl;
|
2017-05-23 20:26:19 +00:00
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|