6bcf67e051
* chore: add code required to use chromes spellchecker * chore: fix linting * chore: manifests needs buildflags now * chore: add dictionarySuggestions to the context menu event when the spellchecker is active * chore: enable by default for windows builds * chore: add patch to remove incognito usage in the spellchecker * chore: add dependencies on spellcheck common and flags * chore: conditionally include spell check panel impl * chore: fix deps for spellcheck feature flags * chore: add patch for electron resources * chore: add dependency on //components/language/core/browser * chore: patches to make hunspell work on windows * build: collect hunspell dictionaries into a zip file and publish * chore: clean up patches * chore: add docs and set spell checker url method * chore: fix error handling * chore: fix hash logic * build: update hunspell filename generator * fix: default spellchecker list to the current system locale if we can * docs: document the language getter * chore: patch IDS_ resources for linux builds * feat: add spellcheck webpref flag to disable the builtin spellchecker * chore: fix docs typo * chore: clean up spellchecker impl as per feedback * remove unneeded deps
140 lines
5 KiB
C++
140 lines
5 KiB
C++
// Copyright (c) 2017 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_RENDERER_RENDERER_CLIENT_BASE_H_
|
|
#define SHELL_RENDERER_RENDERER_CLIENT_BASE_H_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "content/public/renderer/content_renderer_client.h"
|
|
#include "electron/buildflags/buildflags.h"
|
|
#include "third_party/blink/public/web/web_local_frame.h"
|
|
// In SHARED_INTERMEDIATE_DIR.
|
|
#include "widevine_cdm_version.h" // NOLINT(build/include)
|
|
|
|
#if defined(WIDEVINE_CDM_AVAILABLE)
|
|
#include "chrome/renderer/media/chrome_key_systems_provider.h" // nogncheck
|
|
#endif
|
|
|
|
#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
|
|
|
|
namespace network_hints {
|
|
class PrescientNetworkingDispatcher;
|
|
}
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
namespace extensions {
|
|
class ExtensionsClient;
|
|
}
|
|
#endif
|
|
|
|
namespace electron {
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
class AtomExtensionsRendererClient;
|
|
#endif
|
|
|
|
class RendererClientBase : public content::ContentRendererClient
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
,
|
|
public service_manager::LocalInterfaceProvider
|
|
#endif
|
|
{
|
|
public:
|
|
RendererClientBase();
|
|
~RendererClientBase() override;
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
// service_manager::LocalInterfaceProvider implementation.
|
|
void GetInterface(const std::string& name,
|
|
mojo::ScopedMessagePipeHandle request_handle) override;
|
|
|
|
void BindReceiverOnMainThread(mojo::GenericPendingReceiver receiver) override;
|
|
#endif
|
|
|
|
virtual void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
|
content::RenderFrame* render_frame);
|
|
virtual void WillReleaseScriptContext(v8::Handle<v8::Context> context,
|
|
content::RenderFrame* render_frame) = 0;
|
|
virtual void DidClearWindowObject(content::RenderFrame* render_frame);
|
|
virtual void SetupMainWorldOverrides(v8::Handle<v8::Context> context,
|
|
content::RenderFrame* render_frame) = 0;
|
|
virtual void SetupExtensionWorldOverrides(v8::Handle<v8::Context> context,
|
|
content::RenderFrame* render_frame,
|
|
int world_id) = 0;
|
|
|
|
blink::WebPrescientNetworking* GetPrescientNetworking() override;
|
|
bool isolated_world() const { return isolated_world_; }
|
|
|
|
// Get the context that the Electron API is running in.
|
|
v8::Local<v8::Context> GetContext(blink::WebLocalFrame* frame,
|
|
v8::Isolate* isolate) const;
|
|
// Executes a given v8 Script
|
|
static v8::Local<v8::Value> RunScript(v8::Local<v8::Context> context,
|
|
v8::Local<v8::String> source);
|
|
|
|
// v8Util.getHiddenValue(window.frameElement, 'internal')
|
|
bool IsWebViewFrame(v8::Handle<v8::Context> context,
|
|
content::RenderFrame* render_frame) const;
|
|
|
|
protected:
|
|
void AddRenderBindings(v8::Isolate* isolate,
|
|
v8::Local<v8::Object> binding_object);
|
|
|
|
// content::ContentRendererClient:
|
|
void RenderThreadStarted() override;
|
|
void RenderFrameCreated(content::RenderFrame*) override;
|
|
bool OverrideCreatePlugin(content::RenderFrame* render_frame,
|
|
const blink::WebPluginParams& params,
|
|
blink::WebPlugin** plugin) override;
|
|
void AddSupportedKeySystems(
|
|
std::vector<std::unique_ptr<::media::KeySystemProperties>>* key_systems)
|
|
override;
|
|
bool IsKeySystemsUpdateNeeded() override;
|
|
void DidSetUserAgent(const std::string& user_agent) override;
|
|
|
|
void RunScriptsAtDocumentStart(content::RenderFrame* render_frame) override;
|
|
void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override;
|
|
void RunScriptsAtDocumentIdle(content::RenderFrame* render_frame) override;
|
|
|
|
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
|
|
|
|
private:
|
|
std::unique_ptr<network_hints::PrescientNetworkingDispatcher>
|
|
prescient_networking_dispatcher_;
|
|
|
|
#if BUILDFLAG(ENABLE_ELECTRON_EXTENSIONS)
|
|
std::unique_ptr<extensions::ExtensionsClient> extensions_client_;
|
|
std::unique_ptr<AtomExtensionsRendererClient> extensions_renderer_client_;
|
|
#endif
|
|
|
|
#if defined(WIDEVINE_CDM_AVAILABLE)
|
|
ChromeKeySystemsProvider key_systems_provider_;
|
|
#endif
|
|
bool isolated_world_;
|
|
std::string renderer_client_id_;
|
|
// An increasing ID used for indentifying an V8 context in this process.
|
|
int64_t next_context_id_ = 0;
|
|
|
|
#if BUILDFLAG(ENABLE_BUILTIN_SPELLCHECKER)
|
|
std::unique_ptr<SpellCheck> spellcheck_;
|
|
service_manager::BinderRegistry registry_;
|
|
#endif
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_RENDERER_RENDERER_CLIENT_BASE_H_
|