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.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_RENDERER_RENDERER_CLIENT_BASE_H_
|
|
|
|
#define ELECTRON_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>
|
|
|
|
|
|
|
|
#include "content/public/renderer/content_renderer_client.h"
|
2019-07-24 23:01:08 +00:00
|
|
|
#include "electron/buildflags/buildflags.h"
|
2020-10-17 01:30:46 +00:00
|
|
|
#include "printing/buildflags/buildflags.h"
|
2021-03-17 18:23:29 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2018-09-10 19:35:05 +00:00
|
|
|
// In SHARED_INTERMEDIATE_DIR.
|
2020-04-24 19:57:41 +00:00
|
|
|
#include "widevine_cdm_version.h" // NOLINT(build/include_directory)
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2020-10-17 01:30:46 +00:00
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
2022-03-25 01:39:03 +00:00
|
|
|
#include "components/pdf/renderer/internal_plugin_renderer_helpers.h"
|
2020-10-17 01:30:46 +00:00
|
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
|
|
|
2019-10-31 20:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
#include "services/service_manager/public/cpp/binder_registry.h"
|
|
|
|
#include "services/service_manager/public/cpp/local_interface_provider.h"
|
|
|
|
|
|
|
|
class SpellCheck;
|
|
|
|
#endif
|
|
|
|
|
2021-07-02 00:51:37 +00:00
|
|
|
namespace blink {
|
|
|
|
class WebLocalFrame;
|
|
|
|
}
|
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
namespace extensions {
|
|
|
|
class ExtensionsClient;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
namespace electron {
|
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
2020-02-03 22:01:10 +00:00
|
|
|
class ElectronExtensionsRendererClient;
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif
|
|
|
|
|
2019-10-31 20:11:51 +00:00
|
|
|
class RendererClientBase : public content::ContentRendererClient
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
,
|
|
|
|
public service_manager::LocalInterfaceProvider
|
|
|
|
#endif
|
|
|
|
{
|
2017-03-27 21:19:34 +00:00
|
|
|
public:
|
|
|
|
RendererClientBase();
|
2018-04-17 23:03:51 +00:00
|
|
|
~RendererClientBase() override;
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2021-05-10 12:19:23 +00:00
|
|
|
static RendererClientBase* Get();
|
|
|
|
|
2019-10-31 20:11:51 +00:00
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
// service_manager::LocalInterfaceProvider implementation.
|
|
|
|
void GetInterface(const std::string& name,
|
2021-06-01 01:46:25 +00:00
|
|
|
mojo::ScopedMessagePipeHandle interface_pipe) override;
|
2019-10-31 20:11:51 +00:00
|
|
|
#endif
|
|
|
|
|
2018-04-18 01:44:10 +00:00
|
|
|
virtual void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
2021-05-24 07:51:54 +00:00
|
|
|
content::RenderFrame* render_frame) = 0;
|
2018-04-18 01:44:10 +00:00
|
|
|
virtual void WillReleaseScriptContext(v8::Handle<v8::Context> context,
|
|
|
|
content::RenderFrame* render_frame) = 0;
|
2017-04-08 13:43:19 +00:00
|
|
|
virtual void DidClearWindowObject(content::RenderFrame* render_frame);
|
2018-12-13 21:25:12 +00:00
|
|
|
virtual void SetupMainWorldOverrides(v8::Handle<v8::Context> context,
|
2021-05-15 07:42:07 +00:00
|
|
|
content::RenderFrame* render_frame);
|
2017-07-28 00:08:24 +00:00
|
|
|
|
2019-12-11 00:22:35 +00:00
|
|
|
std::unique_ptr<blink::WebPrescientNetworking> CreatePrescientNetworking(
|
|
|
|
content::RenderFrame* render_frame) override;
|
2017-07-28 00:08:24 +00:00
|
|
|
|
|
|
|
// Get the context that the Electron API is running in.
|
2018-04-18 01:44:10 +00:00
|
|
|
v8::Local<v8::Context> GetContext(blink::WebLocalFrame* frame,
|
2018-05-05 06:39:54 +00:00
|
|
|
v8::Isolate* isolate) const;
|
2017-04-08 13:43:19 +00:00
|
|
|
|
2021-05-15 07:42:07 +00:00
|
|
|
static void AllowGuestViewElementDefinition(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> context,
|
|
|
|
v8::Local<v8::Function> register_cb);
|
|
|
|
|
2019-07-17 00:13:05 +00:00
|
|
|
bool IsWebViewFrame(v8::Handle<v8::Context> context,
|
|
|
|
content::RenderFrame* render_frame) const;
|
|
|
|
|
2020-02-03 17:49:37 +00:00
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
SpellCheck* GetSpellCheck() { return spellcheck_.get(); }
|
|
|
|
#endif
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
protected:
|
2021-03-17 18:23:29 +00:00
|
|
|
void BindProcess(v8::Isolate* isolate,
|
|
|
|
gin_helper::Dictionary* process,
|
|
|
|
content::RenderFrame* render_frame);
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2022-06-13 06:58:27 +00:00
|
|
|
bool ShouldLoadPreload(v8::Handle<v8::Context> context,
|
|
|
|
content::RenderFrame* render_frame) const;
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
// content::ContentRendererClient:
|
|
|
|
void RenderThreadStarted() override;
|
2020-02-03 17:49:37 +00:00
|
|
|
void ExposeInterfacesToBrowser(mojo::BinderMap* binders) override;
|
2017-03-27 21:19:34 +00:00
|
|
|
void RenderFrameCreated(content::RenderFrame*) override;
|
|
|
|
bool OverrideCreatePlugin(content::RenderFrame* render_frame,
|
|
|
|
const blink::WebPluginParams& params,
|
|
|
|
blink::WebPlugin** plugin) override;
|
2022-02-25 18:17:35 +00:00
|
|
|
void GetSupportedKeySystems(media::GetSupportedKeySystemsCB cb) override;
|
2019-01-22 07:24:36 +00:00
|
|
|
void DidSetUserAgent(const std::string& user_agent) override;
|
2020-02-13 00:39:12 +00:00
|
|
|
bool IsPluginHandledExternally(content::RenderFrame* render_frame,
|
|
|
|
const blink::WebElement& plugin_element,
|
|
|
|
const GURL& original_url,
|
|
|
|
const std::string& mime_type) override;
|
2022-03-25 01:39:03 +00:00
|
|
|
v8::Local<v8::Object> GetScriptableObject(
|
|
|
|
const blink::WebElement& plugin_element,
|
|
|
|
v8::Isolate* isolate) override;
|
2017-03-27 21:19:34 +00:00
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
void RunScriptsAtDocumentStart(content::RenderFrame* render_frame) override;
|
|
|
|
void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override;
|
|
|
|
void RunScriptsAtDocumentIdle(content::RenderFrame* render_frame) override;
|
|
|
|
|
2021-02-11 15:58:03 +00:00
|
|
|
bool AllowScriptExtensionForServiceWorker(
|
|
|
|
const url::Origin& script_origin) override;
|
|
|
|
void DidInitializeServiceWorkerContextOnWorkerThread(
|
|
|
|
blink::WebServiceWorkerContextProxy* context_proxy,
|
|
|
|
const GURL& service_worker_scope,
|
|
|
|
const GURL& script_url) override;
|
|
|
|
void WillEvaluateServiceWorkerOnWorkerThread(
|
|
|
|
blink::WebServiceWorkerContextProxy* context_proxy,
|
|
|
|
v8::Local<v8::Context> v8_context,
|
|
|
|
int64_t service_worker_version_id,
|
|
|
|
const GURL& service_worker_scope,
|
|
|
|
const GURL& script_url) override;
|
|
|
|
void DidStartServiceWorkerContextOnWorkerThread(
|
|
|
|
int64_t service_worker_version_id,
|
|
|
|
const GURL& service_worker_scope,
|
|
|
|
const GURL& script_url) override;
|
|
|
|
void WillDestroyServiceWorkerContextOnWorkerThread(
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
int64_t service_worker_version_id,
|
|
|
|
const GURL& service_worker_scope,
|
|
|
|
const GURL& script_url) override;
|
2022-10-03 20:21:00 +00:00
|
|
|
void WebViewCreated(blink::WebView* web_view,
|
|
|
|
bool was_created_by_renderer,
|
|
|
|
const url::Origin* outermost_origin) override;
|
2021-02-11 15:58:03 +00:00
|
|
|
|
2019-07-24 23:01:08 +00:00
|
|
|
protected:
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
// app_shell embedders may need custom extensions client interfaces.
|
|
|
|
// This class takes ownership of the returned object.
|
|
|
|
virtual extensions::ExtensionsClient* CreateExtensionsClient();
|
|
|
|
#endif
|
|
|
|
|
2017-03-27 21:19:34 +00:00
|
|
|
private:
|
2019-07-24 23:01:08 +00:00
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
|
|
std::unique_ptr<extensions::ExtensionsClient> extensions_client_;
|
2020-02-03 22:01:10 +00:00
|
|
|
std::unique_ptr<ElectronExtensionsRendererClient> extensions_renderer_client_;
|
2019-07-24 23:01:08 +00:00
|
|
|
#endif
|
2019-08-26 16:47:32 +00:00
|
|
|
|
2018-09-11 18:18:10 +00:00
|
|
|
std::string renderer_client_id_;
|
2020-10-13 17:25:21 +00:00
|
|
|
// An increasing ID used for identifying an V8 context in this process.
|
2018-09-11 18:18:10 +00:00
|
|
|
int64_t next_context_id_ = 0;
|
2019-10-31 20:11:51 +00:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
|
|
std::unique_ptr<SpellCheck> spellcheck_;
|
|
|
|
#endif
|
2017-03-27 21:19:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_RENDERER_RENDERER_CLIENT_BASE_H_
|