2017-03-27 21:19:34 +00:00
|
|
|
// Copyright (c) 2017 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/renderer/renderer_client_base.h"
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2017-03-27 21:19:34 +00:00
|
|
|
#include <string>
|
2019-10-31 20:11:51 +00:00
|
|
|
#include <utility>
|
2017-03-27 21:19:34 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/command_line.h"
|
|
|
|
#include "base/strings/string_split.h"
|
2018-07-19 04:29:47 +00:00
|
|
|
#include "base/strings/stringprintf.h"
|
2019-11-05 23:41:20 +00:00
|
|
|
#include "components/network_hints/renderer/web_prescient_networking_impl.h"
|
2019-04-19 19:55:20 +00:00
|
|
|
#include "content/common/buildflags.h"
|
2017-03-27 21:19:34 +00:00
|
|
|
#include "content/public/common/content_constants.h"
|
2018-09-11 18:18:10 +00:00
|
|
|
#include "content/public/common/content_switches.h"
|
2018-08-16 22:57:40 +00:00
|
|
|
#include "content/public/renderer/render_frame.h"
|
2019-07-24 23:01:08 +00:00
|
|
|
#include "content/public/renderer/render_thread.h"
|
2017-03-27 21:19:34 +00:00
|
|
|
#include "content/public/renderer/render_view.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2020-06-08 16:49:36 +00:00
|
|
|
#include "media/blink/multibuffer_data_source.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/color_util.h"
|
2019-09-08 15:10:18 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/options_switches.h"
|
2020-02-24 04:33:58 +00:00
|
|
|
#include "shell/common/world_ids.h"
|
2020-02-03 17:49:37 +00:00
|
|
|
#include "shell/renderer/browser_exposed_renderer_interfaces.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/renderer/content_settings_observer.h"
|
|
|
|
#include "shell/renderer/electron_api_service_impl.h"
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/renderer/electron_autofill_agent.h"
|
2019-04-02 22:38:16 +00:00
|
|
|
#include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h"
|
2020-11-10 17:06:03 +00:00
|
|
|
#include "third_party/blink/public/common/web_preferences/web_preferences.h"
|
2018-07-20 16:08:18 +00:00
|
|
|
#include "third_party/blink/public/web/blink.h"
|
|
|
|
#include "third_party/blink/public/web/web_custom_element.h" // NOLINT(build/include_alpha)
|
|
|
|
#include "third_party/blink/public/web/web_frame_widget.h"
|
|
|
|
#include "third_party/blink/public/web/web_plugin_params.h"
|
|
|
|
#include "third_party/blink/public/web/web_script_source.h"
|
|
|
|
#include "third_party/blink/public/web/web_security_policy.h"
|
2019-01-21 20:43:17 +00:00
|
|
|
#include "third_party/blink/public/web/web_view.h"
|
2019-03-05 05:08:55 +00:00
|
|
|
#include "third_party/blink/renderer/platform/weborigin/scheme_registry.h" // nogncheck
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2020-08-12 18:33:58 +00:00
|
|
|
#if defined(OS_MAC)
|
2017-03-27 21:19:34 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <shlobj.h>
|
|
|
|
#endif
|
|
|
|
|
2019-10-31 20:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
#include "components/spellcheck/renderer/spellcheck.h"
|
|
|
|
#include "components/spellcheck/renderer/spellcheck_provider.h"
|
|
|
|
#endif
|
|
|
|
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2020-02-04 20:19:40 +00:00
|
|
|
#include "shell/common/electron_constants.h"
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2018-03-15 08:51:48 +00:00
|
|
|
|
2019-11-04 17:50:31 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PLUGINS)
|
|
|
|
#include "shell/renderer/pepper_helper.h"
|
|
|
|
#endif // BUILDFLAG(ENABLE_PLUGINS)
|
2018-06-20 00:44:24 +00:00
|
|
|
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
#include "components/printing/renderer/print_render_frame_helper.h"
|
2020-04-29 06:16:10 +00:00
|
|
|
#include "printing/print_settings.h" // nogncheck
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/renderer/printing/print_render_frame_helper_delegate.h"
|
2018-10-13 01:57:04 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
2020-02-13 00:39:12 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
|
|
|
#include "content/public/common/webplugininfo.h"
|
|
|
|
#include "extensions/common/constants.h"
|
2019-07-24 23:01:08 +00:00
|
|
|
#include "extensions/common/extensions_client.h"
|
|
|
|
#include "extensions/renderer/dispatcher.h"
|
|
|
|
#include "extensions/renderer/extension_frame_helper.h"
|
|
|
|
#include "extensions/renderer/guest_view/extensions_guest_view_container.h"
|
|
|
|
#include "extensions/renderer/guest_view/extensions_guest_view_container_dispatcher.h"
|
|
|
|
#include "extensions/renderer/guest_view/mime_handler_view/mime_handler_view_container.h"
|
2020-02-13 00:39:12 +00:00
|
|
|
#include "extensions/renderer/guest_view/mime_handler_view/mime_handler_view_container_manager.h"
|
2020-02-03 22:01:10 +00:00
|
|
|
#include "shell/common/extensions/electron_extensions_client.h"
|
|
|
|
#include "shell/renderer/extensions/electron_extensions_renderer_client.h"
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2017-03-27 21:19:34 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-09-11 18:18:10 +00:00
|
|
|
std::vector<std::string> ParseSchemesCLISwitch(base::CommandLine* command_line,
|
|
|
|
const char* switch_name) {
|
2017-03-27 21:19:34 +00:00
|
|
|
std::string custom_schemes = command_line->GetSwitchValueASCII(switch_name);
|
2018-04-18 01:55:30 +00:00
|
|
|
return base::SplitString(custom_schemes, ",", base::TRIM_WHITESPACE,
|
|
|
|
base::SPLIT_WANT_NONEMPTY);
|
2017-03-27 21:19:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
RendererClientBase::RendererClientBase() {
|
2018-09-11 18:18:10 +00:00
|
|
|
auto* command_line = base::CommandLine::ForCurrentProcess();
|
2017-03-27 21:19:34 +00:00
|
|
|
// Parse --standard-schemes=scheme1,scheme2
|
|
|
|
std::vector<std::string> standard_schemes_list =
|
2018-09-11 18:18:10 +00:00
|
|
|
ParseSchemesCLISwitch(command_line, switches::kStandardSchemes);
|
2017-03-27 21:19:34 +00:00
|
|
|
for (const std::string& scheme : standard_schemes_list)
|
2018-07-21 15:40:06 +00:00
|
|
|
url::AddStandardScheme(scheme.c_str(), url::SCHEME_WITH_HOST);
|
2020-04-01 02:33:16 +00:00
|
|
|
// Parse --cors-schemes=scheme1,scheme2
|
|
|
|
std::vector<std::string> cors_schemes_list =
|
|
|
|
ParseSchemesCLISwitch(command_line, switches::kCORSSchemes);
|
|
|
|
for (const std::string& scheme : cors_schemes_list)
|
|
|
|
url::AddCorsEnabledScheme(scheme.c_str());
|
2020-06-08 16:49:36 +00:00
|
|
|
// Parse --streaming-schemes=scheme1,scheme2
|
|
|
|
std::vector<std::string> streaming_schemes_list =
|
|
|
|
ParseSchemesCLISwitch(command_line, switches::kStreamingSchemes);
|
|
|
|
for (const std::string& scheme : streaming_schemes_list)
|
|
|
|
media::AddStreamingScheme(scheme.c_str());
|
2021-01-25 16:46:00 +00:00
|
|
|
// Parse --secure-schemes=scheme1,scheme2
|
|
|
|
std::vector<std::string> secure_schemes_list =
|
|
|
|
ParseSchemesCLISwitch(command_line, switches::kSecureSchemes);
|
|
|
|
for (const std::string& scheme : secure_schemes_list)
|
|
|
|
url::AddSecureScheme(scheme.data());
|
|
|
|
// In Chrome we should set extension's origins to match the pages they can
|
|
|
|
// work on, but in Electron currently we just let extensions do anything.
|
|
|
|
url::AddSecureScheme(extensions::kExtensionScheme);
|
2018-09-11 18:18:10 +00:00
|
|
|
// We rely on the unique process host id which is notified to the
|
|
|
|
// renderer process via command line switch from the content layer,
|
|
|
|
// if this switch is removed from the content layer for some reason,
|
|
|
|
// we should define our own.
|
|
|
|
DCHECK(command_line->HasSwitch(::switches::kRendererClientId));
|
|
|
|
renderer_client_id_ =
|
|
|
|
command_line->GetSwitchValueASCII(::switches::kRendererClientId);
|
2017-03-27 21:19:34 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
RendererClientBase::~RendererClientBase() = default;
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2018-07-19 04:29:47 +00:00
|
|
|
void RendererClientBase::DidCreateScriptContext(
|
|
|
|
v8::Handle<v8::Context> context,
|
|
|
|
content::RenderFrame* render_frame) {
|
2018-09-11 18:18:10 +00:00
|
|
|
// global.setHidden("contextId", `${processHostId}-${++next_context_id_}`)
|
|
|
|
auto context_id = base::StringPrintf(
|
|
|
|
"%s-%" PRId64, renderer_client_id_.c_str(), ++next_context_id_);
|
2019-09-08 15:10:18 +00:00
|
|
|
gin_helper::Dictionary global(context->GetIsolate(), context->Global());
|
2019-07-16 02:50:38 +00:00
|
|
|
global.SetHidden("contextId", context_id);
|
2018-07-19 04:29:47 +00:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
void RendererClientBase::AddRenderBindings(
|
|
|
|
v8::Isolate* isolate,
|
2019-09-08 15:10:18 +00:00
|
|
|
v8::Local<v8::Object> binding_object) {}
|
2017-03-27 21:19:34 +00:00
|
|
|
|
|
|
|
void RendererClientBase::RenderThreadStarted() {
|
2018-09-11 18:18:10 +00:00
|
|
|
auto* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
|
2019-04-19 19:55:20 +00:00
|
|
|
#if BUILDFLAG(USE_EXTERNAL_POPUP_MENU)
|
|
|
|
// On macOS, popup menus are rendered by the main process by default.
|
|
|
|
// This causes problems in OSR, since when the popup is rendered separately,
|
|
|
|
// it won't be captured in the rendered image.
|
2020-11-10 17:06:03 +00:00
|
|
|
// TODO(loc): This will be wrong for in-process child windows, as this
|
|
|
|
// function won't run again for them.
|
2019-04-19 19:55:20 +00:00
|
|
|
if (command_line->HasSwitch(options::kOffscreen)) {
|
|
|
|
blink::WebView::SetUseExternalPopupMenus(false);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
auto* thread = content::RenderThread::Get();
|
|
|
|
|
|
|
|
extensions_client_.reset(CreateExtensionsClient());
|
|
|
|
extensions::ExtensionsClient::Set(extensions_client_.get());
|
|
|
|
|
2020-02-03 22:01:10 +00:00
|
|
|
extensions_renderer_client_.reset(new ElectronExtensionsRendererClient);
|
2019-07-24 23:01:08 +00:00
|
|
|
extensions::ExtensionsRendererClient::Set(extensions_renderer_client_.get());
|
|
|
|
|
2020-05-04 20:56:50 +00:00
|
|
|
thread->AddObserver(extensions_renderer_client_->GetDispatcher());
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2020-03-20 16:46:13 +00:00
|
|
|
// Enables printing from Chrome PDF viewer.
|
2020-10-17 01:30:46 +00:00
|
|
|
pdf_print_client_.reset(new ChromePDFPrintClient());
|
|
|
|
pdf::PepperPDFHost::SetPrintClient(pdf_print_client_.get());
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif
|
|
|
|
|
2019-10-31 20:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
2020-11-10 17:06:03 +00:00
|
|
|
spellcheck_ = std::make_unique<SpellCheck>(this);
|
2019-10-31 20:11:51 +00:00
|
|
|
#endif
|
|
|
|
|
2017-06-16 20:42:33 +00:00
|
|
|
blink::WebCustomElement::AddEmbedderCustomElementName("webview");
|
|
|
|
blink::WebCustomElement::AddEmbedderCustomElementName("browserplugin");
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2021-01-25 16:46:00 +00:00
|
|
|
WTF::String extension_scheme(extensions::kExtensionScheme);
|
2017-09-15 07:48:55 +00:00
|
|
|
// Extension resources are HTTP-like and safe to expose to the fetch API. The
|
|
|
|
// rules for the fetch API are consistent with XHR.
|
|
|
|
blink::SchemeRegistry::RegisterURLSchemeAsSupportingFetchAPI(
|
|
|
|
extension_scheme);
|
|
|
|
// Extension resources, when loaded as the top-level document, should bypass
|
|
|
|
// Blink's strict first-party origin checks.
|
|
|
|
blink::SchemeRegistry::RegisterURLSchemeAsFirstPartyWhenTopLevel(
|
|
|
|
extension_scheme);
|
|
|
|
blink::SchemeRegistry::RegisterURLSchemeAsBypassingContentSecurityPolicy(
|
|
|
|
extension_scheme);
|
|
|
|
|
2019-01-29 07:11:01 +00:00
|
|
|
std::vector<std::string> fetch_enabled_schemes =
|
|
|
|
ParseSchemesCLISwitch(command_line, switches::kFetchSchemes);
|
|
|
|
for (const std::string& scheme : fetch_enabled_schemes) {
|
|
|
|
blink::WebSecurityPolicy::RegisterURLSchemeAsSupportingFetchAPI(
|
|
|
|
blink::WebString::FromASCII(scheme));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> service_worker_schemes =
|
|
|
|
ParseSchemesCLISwitch(command_line, switches::kServiceWorkerSchemes);
|
|
|
|
for (const std::string& scheme : service_worker_schemes)
|
|
|
|
blink::WebSecurityPolicy::RegisterURLSchemeAsAllowingServiceWorkers(
|
|
|
|
blink::WebString::FromASCII(scheme));
|
|
|
|
|
|
|
|
std::vector<std::string> csp_bypassing_schemes =
|
|
|
|
ParseSchemesCLISwitch(command_line, switches::kBypassCSPSchemes);
|
|
|
|
for (const std::string& scheme : csp_bypassing_schemes)
|
|
|
|
blink::SchemeRegistry::RegisterURLSchemeAsBypassingContentSecurityPolicy(
|
|
|
|
WTF::String::FromUTF8(scheme.data(), scheme.length()));
|
|
|
|
|
2017-12-17 20:56:53 +00:00
|
|
|
// Allow file scheme to handle service worker by default.
|
|
|
|
// FIXME(zcbenz): Can this be moved elsewhere?
|
|
|
|
blink::WebSecurityPolicy::RegisterURLSchemeAsAllowingServiceWorkers("file");
|
2017-12-18 09:29:28 +00:00
|
|
|
blink::SchemeRegistry::RegisterURLSchemeAsSupportingFetchAPI("file");
|
2017-12-17 20:56:53 +00:00
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Set ApplicationUserModelID in renderer process.
|
|
|
|
base::string16 app_id =
|
|
|
|
command_line->GetSwitchValueNative(switches::kAppUserModelId);
|
|
|
|
if (!app_id.empty()) {
|
|
|
|
SetCurrentProcessExplicitAppUserModelID(app_id.c_str());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-03 17:49:37 +00:00
|
|
|
void RendererClientBase::ExposeInterfacesToBrowser(mojo::BinderMap* binders) {
|
|
|
|
// NOTE: Do not add binders directly within this method. Instead, modify the
|
|
|
|
// definition of |ExposeElectronRendererInterfacesToBrowser()| to ensure
|
|
|
|
// security review coverage.
|
|
|
|
ExposeElectronRendererInterfacesToBrowser(this, binders);
|
|
|
|
}
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
void RendererClientBase::RenderFrameCreated(
|
|
|
|
content::RenderFrame* render_frame) {
|
2018-04-05 00:53:51 +00:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
2019-06-12 22:08:22 +00:00
|
|
|
new AutofillAgent(render_frame,
|
|
|
|
render_frame->GetAssociatedInterfaceRegistry());
|
2018-04-05 00:53:51 +00:00
|
|
|
#endif
|
2019-11-04 17:50:31 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PLUGINS)
|
2017-03-27 21:19:34 +00:00
|
|
|
new PepperHelper(render_frame);
|
2018-06-20 00:44:24 +00:00
|
|
|
#endif
|
2017-03-27 21:19:34 +00:00
|
|
|
new ContentSettingsObserver(render_frame);
|
2018-10-13 01:57:04 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
new printing::PrintRenderFrameHelper(
|
2019-06-19 21:23:04 +00:00
|
|
|
render_frame,
|
|
|
|
std::make_unique<electron::PrintRenderFrameHelperDelegate>());
|
2018-10-13 01:57:04 +00:00
|
|
|
#endif
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2019-08-12 17:38:41 +00:00
|
|
|
// Note: ElectronApiServiceImpl has to be created now to capture the
|
|
|
|
// DidCreateDocumentElement event.
|
|
|
|
auto* service = new ElectronApiServiceImpl(render_frame, this);
|
2019-04-02 22:38:16 +00:00
|
|
|
render_frame->GetAssociatedInterfaceRegistry()->AddInterface(
|
2019-08-12 17:38:41 +00:00
|
|
|
base::BindRepeating(&ElectronApiServiceImpl::BindTo,
|
|
|
|
service->GetWeakPtr()));
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2018-10-14 17:59:47 +00:00
|
|
|
content::RenderView* render_view = render_frame->GetRenderView();
|
|
|
|
if (render_frame->IsMainFrame() && render_view) {
|
2019-01-21 20:43:17 +00:00
|
|
|
blink::WebView* webview = render_view->GetWebView();
|
|
|
|
if (webview) {
|
2020-11-10 17:06:03 +00:00
|
|
|
auto prefs = render_frame->GetBlinkPreferences();
|
|
|
|
if (prefs.guest_instance_id) { // webview.
|
2019-01-21 20:43:17 +00:00
|
|
|
webview->SetBaseBackgroundColor(SK_ColorTRANSPARENT);
|
2018-10-14 17:59:47 +00:00
|
|
|
} else { // normal window.
|
2020-11-10 17:06:03 +00:00
|
|
|
std::string name = prefs.background_color;
|
2018-10-14 17:59:47 +00:00
|
|
|
SkColor color =
|
|
|
|
name.empty() ? SK_ColorTRANSPARENT : ParseHexColor(name);
|
2019-01-21 20:43:17 +00:00
|
|
|
webview->SetBaseBackgroundColor(color);
|
2018-10-14 17:59:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-24 23:01:08 +00:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
auto* dispatcher = extensions_renderer_client_->GetDispatcher();
|
|
|
|
// ExtensionFrameHelper destroys itself when the RenderFrame is destroyed.
|
|
|
|
new extensions::ExtensionFrameHelper(render_frame, dispatcher);
|
|
|
|
|
|
|
|
dispatcher->OnRenderFrameCreated(render_frame);
|
2020-02-13 00:39:12 +00:00
|
|
|
|
|
|
|
render_frame->GetAssociatedInterfaceRegistry()->AddInterface(
|
|
|
|
base::BindRepeating(
|
|
|
|
&extensions::MimeHandlerViewContainerManager::BindReceiver,
|
|
|
|
render_frame->GetRoutingID()));
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif
|
2019-10-31 20:11:51 +00:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
2020-11-10 17:06:03 +00:00
|
|
|
if (render_frame->GetBlinkPreferences().enable_spellcheck)
|
2019-10-31 20:11:51 +00:00
|
|
|
new SpellCheckProvider(render_frame, spellcheck_.get(), this);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
void RendererClientBase::GetInterface(
|
|
|
|
const std::string& interface_name,
|
|
|
|
mojo::ScopedMessagePipeHandle interface_pipe) {
|
|
|
|
// TODO(crbug.com/977637): Get rid of the use of this implementation of
|
|
|
|
// |service_manager::LocalInterfaceProvider|. This was done only to avoid
|
|
|
|
// churning spellcheck code while eliminating the "chrome" and
|
|
|
|
// "chrome_renderer" services. Spellcheck is (and should remain) the only
|
|
|
|
// consumer of this implementation.
|
|
|
|
content::RenderThread::Get()->BindHostReceiver(
|
|
|
|
mojo::GenericPendingReceiver(interface_name, std::move(interface_pipe)));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-08 13:43:19 +00:00
|
|
|
void RendererClientBase::DidClearWindowObject(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
// Make sure every page will get a script context created.
|
2017-06-16 20:42:33 +00:00
|
|
|
render_frame->GetWebFrame()->ExecuteScript(blink::WebScriptSource("void 0"));
|
2017-04-08 13:43:19 +00:00
|
|
|
}
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
bool RendererClientBase::OverrideCreatePlugin(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const blink::WebPluginParams& params,
|
|
|
|
blink::WebPlugin** plugin) {
|
2017-06-16 20:42:33 +00:00
|
|
|
if (params.mime_type.Utf8() == content::kBrowserPluginMimeType ||
|
2018-10-01 20:00:53 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2017-06-16 20:42:33 +00:00
|
|
|
params.mime_type.Utf8() == kPdfPluginMimeType ||
|
2018-10-01 20:00:53 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
2020-11-10 17:06:03 +00:00
|
|
|
render_frame->GetBlinkPreferences().enable_plugins)
|
2017-03-27 21:19:34 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
*plugin = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RendererClientBase::AddSupportedKeySystems(
|
|
|
|
std::vector<std::unique_ptr<::media::KeySystemProperties>>* key_systems) {
|
2018-09-09 20:14:16 +00:00
|
|
|
#if defined(WIDEVINE_CDM_AVAILABLE)
|
2018-09-05 21:00:37 +00:00
|
|
|
key_systems_provider_.AddSupportedKeySystems(key_systems);
|
2018-09-09 20:14:16 +00:00
|
|
|
#endif
|
2018-09-05 21:00:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RendererClientBase::IsKeySystemsUpdateNeeded() {
|
2018-09-09 20:14:16 +00:00
|
|
|
#if defined(WIDEVINE_CDM_AVAILABLE)
|
2018-09-05 21:00:37 +00:00
|
|
|
return key_systems_provider_.IsKeySystemsUpdateNeeded();
|
2018-09-09 20:14:16 +00:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
2017-03-27 21:19:34 +00:00
|
|
|
}
|
|
|
|
|
2019-01-22 07:24:36 +00:00
|
|
|
void RendererClientBase::DidSetUserAgent(const std::string& user_agent) {
|
|
|
|
#if BUILDFLAG(ENABLE_PRINTING)
|
|
|
|
printing::SetAgent(user_agent);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-10-16 01:30:41 +00:00
|
|
|
guest_view::GuestViewContainer* RendererClientBase::CreateBrowserPluginDelegate(
|
2020-02-13 00:39:12 +00:00
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const content::WebPluginInfo& info,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const GURL& original_url) {
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
// TODO(nornagon): check the mime type isn't content::kBrowserPluginMimeType?
|
|
|
|
return new extensions::MimeHandlerViewContainer(render_frame, info, mime_type,
|
|
|
|
original_url);
|
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RendererClientBase::IsPluginHandledExternally(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const blink::WebElement& plugin_element,
|
|
|
|
const GURL& original_url,
|
|
|
|
const std::string& mime_type) {
|
2020-05-04 20:56:50 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2020-02-13 00:39:12 +00:00
|
|
|
DCHECK(plugin_element.HasHTMLTagName("object") ||
|
|
|
|
plugin_element.HasHTMLTagName("embed"));
|
|
|
|
// TODO(nornagon): this info should be shared with the data in
|
|
|
|
// electron_content_client.cc / ComputeBuiltInPlugins.
|
|
|
|
content::WebPluginInfo info;
|
|
|
|
info.type = content::WebPluginInfo::PLUGIN_TYPE_BROWSER_PLUGIN;
|
|
|
|
info.name = base::UTF8ToUTF16("Chromium PDF Viewer");
|
|
|
|
info.path = base::FilePath::FromUTF8Unsafe(extension_misc::kPdfExtensionId);
|
|
|
|
info.background_color = content::WebPluginInfo::kDefaultBackgroundColor;
|
|
|
|
info.mime_types.emplace_back("application/pdf", "pdf",
|
|
|
|
"Portable Document Format");
|
|
|
|
return extensions::MimeHandlerViewContainerManager::Get(
|
|
|
|
content::RenderFrame::FromWebFrame(
|
|
|
|
plugin_element.GetDocument().GetFrame()),
|
|
|
|
true /* create_if_does_not_exist */)
|
|
|
|
->CreateFrameContainer(plugin_element, original_url, mime_type, info);
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RendererClientBase::IsOriginIsolatedPepperPlugin(
|
|
|
|
const base::FilePath& plugin_path) {
|
2020-03-10 10:53:29 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2020-02-13 00:39:12 +00:00
|
|
|
return plugin_path.value() == kPdfPluginPath;
|
2020-03-10 10:53:29 +00:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
2020-02-13 00:39:12 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 00:22:35 +00:00
|
|
|
std::unique_ptr<blink::WebPrescientNetworking>
|
|
|
|
RendererClientBase::CreatePrescientNetworking(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
return std::make_unique<network_hints::WebPrescientNetworkingImpl>(
|
|
|
|
render_frame);
|
2019-08-26 16:47:32 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
void RendererClientBase::RunScriptsAtDocumentStart(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
extensions_renderer_client_.get()->RunScriptsAtDocumentStart(render_frame);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void RendererClientBase::RunScriptsAtDocumentIdle(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
extensions_renderer_client_.get()->RunScriptsAtDocumentIdle(render_frame);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void RendererClientBase::RunScriptsAtDocumentEnd(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
extensions_renderer_client_.get()->RunScriptsAtDocumentEnd(render_frame);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-07-28 00:08:24 +00:00
|
|
|
v8::Local<v8::Context> RendererClientBase::GetContext(
|
2018-04-18 01:55:30 +00:00
|
|
|
blink::WebLocalFrame* frame,
|
2018-05-05 06:39:54 +00:00
|
|
|
v8::Isolate* isolate) const {
|
2020-11-10 17:06:03 +00:00
|
|
|
auto* render_frame = content::RenderFrame::FromWebFrame(frame);
|
|
|
|
DCHECK(render_frame);
|
|
|
|
if (render_frame && render_frame->GetBlinkPreferences().context_isolation)
|
2020-02-24 04:33:58 +00:00
|
|
|
return frame->WorldScriptContext(isolate, WorldIDs::ISOLATED_WORLD_ID);
|
2017-08-09 00:10:44 +00:00
|
|
|
else
|
2017-08-24 21:31:25 +00:00
|
|
|
return frame->MainWorldScriptContext();
|
2017-07-28 00:08:24 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 01:55:03 +00:00
|
|
|
v8::Local<v8::Value> RendererClientBase::RunScript(
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
v8::Local<v8::String> source) {
|
2018-10-25 15:29:13 +00:00
|
|
|
auto maybe_script = v8::Script::Compile(context, source);
|
|
|
|
v8::Local<v8::Script> script;
|
|
|
|
if (!maybe_script.ToLocal(&script))
|
|
|
|
return v8::Local<v8::Value>();
|
|
|
|
return script->Run(context).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
extensions::ExtensionsClient* RendererClientBase::CreateExtensionsClient() {
|
2020-02-03 22:01:10 +00:00
|
|
|
return new ElectronExtensionsClient;
|
2019-07-24 23:01:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-07-17 00:13:05 +00:00
|
|
|
bool RendererClientBase::IsWebViewFrame(
|
|
|
|
v8::Handle<v8::Context> context,
|
|
|
|
content::RenderFrame* render_frame) const {
|
|
|
|
auto* isolate = context->GetIsolate();
|
|
|
|
|
|
|
|
if (render_frame->IsMainFrame())
|
|
|
|
return false;
|
|
|
|
|
2019-09-08 15:10:18 +00:00
|
|
|
gin::Dictionary window_dict(
|
2019-07-17 00:13:05 +00:00
|
|
|
isolate, GetContext(render_frame->GetWebFrame(), isolate)->Global());
|
|
|
|
|
|
|
|
v8::Local<v8::Object> frame_element;
|
|
|
|
if (!window_dict.Get("frameElement", &frame_element))
|
|
|
|
return false;
|
|
|
|
|
2019-09-08 15:10:18 +00:00
|
|
|
gin_helper::Dictionary frame_element_dict(isolate, frame_element);
|
2019-07-17 00:13:05 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Object> internal;
|
|
|
|
if (!frame_element_dict.GetHidden("internal", &internal))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return !internal.IsEmpty();
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|