2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 09:46:58 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-12-23 22:08:45 +08:00
|
|
|
#ifndef ATOM_RENDERER_ATOM_RENDERER_CLIENT_H_
|
|
|
|
#define ATOM_RENDERER_ATOM_RENDERER_CLIENT_H_
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
2015-12-16 11:06:38 +01:00
|
|
|
#include <vector>
|
2014-01-09 22:13:06 +08:00
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
#include "content/public/renderer/content_renderer_client.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2015-01-23 20:43:38 -08:00
|
|
|
class AtomBindings;
|
2016-05-27 08:51:02 +09:00
|
|
|
class PreferencesManager;
|
2013-04-20 11:13:06 +08:00
|
|
|
class NodeBindings;
|
|
|
|
|
2016-05-23 10:59:39 +09:00
|
|
|
class AtomRendererClient : public content::ContentRendererClient {
|
2013-04-12 23:16:16 +08:00
|
|
|
public:
|
2013-04-12 09:46:58 +08:00
|
|
|
AtomRendererClient();
|
2013-04-12 23:16:16 +08:00
|
|
|
virtual ~AtomRendererClient();
|
2013-04-12 09:46:58 +08:00
|
|
|
|
2016-05-30 14:56:31 +09:00
|
|
|
void DidClearWindowObject(content::RenderFrame* render_frame);
|
2016-05-27 15:10:46 +09:00
|
|
|
void DidCreateScriptContext(
|
|
|
|
v8::Handle<v8::Context> context, content::RenderFrame* render_frame);
|
|
|
|
void WillReleaseScriptContext(
|
|
|
|
v8::Handle<v8::Context> context, content::RenderFrame* render_frame);
|
2015-05-22 15:01:13 +08:00
|
|
|
|
2016-12-13 14:04:17 -08:00
|
|
|
// Get the context that the Electron API is running in.
|
2016-12-15 08:26:37 -08:00
|
|
|
v8::Local<v8::Context> GetContext(
|
|
|
|
blink::WebFrame* frame, v8::Isolate* isolate);
|
|
|
|
bool isolated_world() { return isolated_world_; }
|
2016-12-08 16:58:27 -08:00
|
|
|
|
2013-04-12 23:16:16 +08:00
|
|
|
private:
|
2014-01-30 23:20:12 +08:00
|
|
|
enum NodeIntegration {
|
|
|
|
ALL,
|
|
|
|
EXCEPT_IFRAME,
|
|
|
|
MANUAL_ENABLE_IFRAME,
|
|
|
|
DISABLE,
|
2014-01-30 22:47:21 +08:00
|
|
|
};
|
|
|
|
|
2014-06-28 22:33:00 +08:00
|
|
|
// content::ContentRendererClient:
|
2014-10-26 14:05:54 +08:00
|
|
|
void RenderThreadStarted() override;
|
2015-04-28 21:15:58 +05:30
|
|
|
void RenderFrameCreated(content::RenderFrame*) override;
|
2014-10-26 14:05:54 +08:00
|
|
|
void RenderViewCreated(content::RenderView*) override;
|
2016-05-10 15:43:25 +09:00
|
|
|
void RunScriptsAtDocumentStart(content::RenderFrame* render_frame) override;
|
2016-05-27 11:07:06 +09:00
|
|
|
void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override;
|
2014-10-26 14:05:54 +08:00
|
|
|
blink::WebSpeechSynthesizer* OverrideSpeechSynthesizer(
|
|
|
|
blink::WebSpeechSynthesizerClient* client) override;
|
|
|
|
bool OverrideCreatePlugin(content::RenderFrame* render_frame,
|
|
|
|
blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebPluginParams& params,
|
|
|
|
blink::WebPlugin** plugin) override;
|
2015-09-02 15:16:49 +08:00
|
|
|
bool ShouldFork(blink::WebLocalFrame* frame,
|
2014-10-26 14:05:54 +08:00
|
|
|
const GURL& url,
|
|
|
|
const std::string& http_method,
|
|
|
|
bool is_initial_navigation,
|
|
|
|
bool is_server_redirect,
|
|
|
|
bool* send_referrer) override;
|
2015-03-13 16:33:06 -07:00
|
|
|
content::BrowserPluginDelegate* CreateBrowserPluginDelegate(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const GURL& original_url) override;
|
2016-07-04 15:08:55 +09:00
|
|
|
void AddSupportedKeySystems(
|
|
|
|
std::vector<std::unique_ptr<::media::KeySystemProperties>>* key_systems)
|
|
|
|
override;
|
2015-12-29 16:41:44 +08:00
|
|
|
|
2017-03-02 17:18:00 +09:00
|
|
|
// Whether the node integration has been initialized.
|
|
|
|
bool node_integration_initialized_;
|
|
|
|
|
2016-05-23 10:59:39 +09:00
|
|
|
std::unique_ptr<NodeBindings> node_bindings_;
|
|
|
|
std::unique_ptr<AtomBindings> atom_bindings_;
|
2016-05-27 08:51:02 +09:00
|
|
|
std::unique_ptr<PreferencesManager> preferences_manager_;
|
2016-12-15 08:26:37 -08:00
|
|
|
bool isolated_world_;
|
2013-04-20 11:13:06 +08:00
|
|
|
|
2013-04-12 09:46:58 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRendererClient);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2013-12-23 22:08:45 +08:00
|
|
|
#endif // ATOM_RENDERER_ATOM_RENDERER_CLIENT_H_
|