2015-02-04 23:39:41 +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.
|
|
|
|
|
2015-02-05 08:17:45 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/web_contents_preferences.h"
|
|
|
|
#include "shell/browser/web_contents_zoom_controller.h"
|
|
|
|
#include "shell/browser/web_view_manager.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/common/gin_converters/content_converter.h"
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/node_includes.h"
|
|
|
|
#include "shell/common/options_switches.h"
|
2018-08-16 22:57:40 +00:00
|
|
|
|
2015-09-07 07:55:08 +00:00
|
|
|
using electron::WebContentsPreferences;
|
|
|
|
|
2015-02-04 23:39:41 +00:00
|
|
|
namespace {
|
|
|
|
|
2015-02-04 23:52:59 +00:00
|
|
|
void AddGuest(int guest_instance_id,
|
|
|
|
content::WebContents* embedder,
|
|
|
|
content::WebContents* guest_web_contents,
|
2021-07-26 16:04:09 +00:00
|
|
|
const gin_helper::Dictionary& options) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* manager = electron::WebViewManager::GetWebViewManager(embedder);
|
2015-09-03 00:47:58 +00:00
|
|
|
if (manager)
|
2021-05-04 13:59:44 +00:00
|
|
|
manager->AddGuest(guest_instance_id, embedder, guest_web_contents);
|
2015-09-03 00:47:58 +00:00
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
double zoom_factor;
|
2021-07-26 16:04:09 +00:00
|
|
|
if (options.Get(electron::options::kZoomFactor, &zoom_factor)) {
|
2017-01-30 11:18:40 +00:00
|
|
|
electron::WebContentsZoomController::FromWebContents(guest_web_contents)
|
|
|
|
->SetDefaultZoomFactor(zoom_factor);
|
|
|
|
}
|
2015-02-04 23:52:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveGuest(content::WebContents* embedder, int guest_instance_id) {
|
2018-04-17 22:41:47 +00:00
|
|
|
auto* manager = electron::WebViewManager::GetWebViewManager(embedder);
|
2015-02-04 23:52:59 +00:00
|
|
|
if (manager)
|
|
|
|
manager->RemoveGuest(guest_instance_id);
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2019-10-25 13:03:28 +00:00
|
|
|
gin_helper::Dictionary dict(context->GetIsolate(), exports);
|
2015-02-04 23:52:59 +00:00
|
|
|
dict.SetMethod("addGuest", &AddGuest);
|
|
|
|
dict.SetMethod("removeGuest", &RemoveGuest);
|
2015-02-04 23:39:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2023-02-09 01:31:38 +00:00
|
|
|
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_web_view_manager, Initialize)
|