2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-12-23 14:08:45 +00:00
|
|
|
#ifndef ATOM_RENDERER_ATOM_RENDERER_CLIENT_H_
|
|
|
|
#define ATOM_RENDERER_ATOM_RENDERER_CLIENT_H_
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
2015-12-16 10:06:38 +00:00
|
|
|
#include <vector>
|
2014-01-09 14:13:06 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
#include "content/public/renderer/content_renderer_client.h"
|
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2015-01-24 04:43:38 +00:00
|
|
|
class AtomBindings;
|
2016-05-26 23:51:02 +00:00
|
|
|
class PreferencesManager;
|
2013-04-20 03:13:06 +00:00
|
|
|
class NodeBindings;
|
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
class AtomRendererClient : public content::ContentRendererClient {
|
2013-04-12 15:16:16 +00:00
|
|
|
public:
|
2013-04-12 01:46:58 +00:00
|
|
|
AtomRendererClient();
|
2013-04-12 15:16:16 +00:00
|
|
|
virtual ~AtomRendererClient();
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2016-05-30 05:56:31 +00:00
|
|
|
void DidClearWindowObject(content::RenderFrame* render_frame);
|
2016-05-27 06:10:46 +00: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 07:01:13 +00:00
|
|
|
|
2013-04-12 15:16:16 +00:00
|
|
|
private:
|
2014-01-30 15:20:12 +00:00
|
|
|
enum NodeIntegration {
|
|
|
|
ALL,
|
|
|
|
EXCEPT_IFRAME,
|
|
|
|
MANUAL_ENABLE_IFRAME,
|
|
|
|
DISABLE,
|
2014-01-30 14:47:21 +00:00
|
|
|
};
|
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
// content::ContentRendererClient:
|
2014-10-26 06:05:54 +00:00
|
|
|
void RenderThreadStarted() override;
|
2015-04-28 15:45:58 +00:00
|
|
|
void RenderFrameCreated(content::RenderFrame*) override;
|
2014-10-26 06:05:54 +00:00
|
|
|
void RenderViewCreated(content::RenderView*) override;
|
2016-05-10 06:43:25 +00:00
|
|
|
void RunScriptsAtDocumentStart(content::RenderFrame* render_frame) override;
|
2016-05-27 02:07:06 +00:00
|
|
|
void RunScriptsAtDocumentEnd(content::RenderFrame* render_frame) override;
|
2014-10-26 06:05:54 +00: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 07:16:49 +00:00
|
|
|
bool ShouldFork(blink::WebLocalFrame* frame,
|
2014-10-26 06:05:54 +00:00
|
|
|
const GURL& url,
|
|
|
|
const std::string& http_method,
|
|
|
|
bool is_initial_navigation,
|
|
|
|
bool is_server_redirect,
|
|
|
|
bool* send_referrer) override;
|
2015-03-13 23:33:06 +00:00
|
|
|
content::BrowserPluginDelegate* CreateBrowserPluginDelegate(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const GURL& original_url) override;
|
2015-12-16 10:06:38 +00:00
|
|
|
void AddKeySystems(std::vector<media::KeySystemInfo>* key_systems) override;
|
2016-05-21 04:51:15 +00:00
|
|
|
void GetNavigationErrorStrings(content::RenderFrame* render_frame,
|
|
|
|
const blink::WebURLRequest& failed_request,
|
|
|
|
const blink::WebURLError& error,
|
|
|
|
std::string* error_html,
|
|
|
|
base::string16* error_description) override;
|
2015-12-29 08:41:44 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<NodeBindings> node_bindings_;
|
|
|
|
std::unique_ptr<AtomBindings> atom_bindings_;
|
2016-05-26 23:51:02 +00:00
|
|
|
std::unique_ptr<PreferencesManager> preferences_manager_;
|
2013-04-20 03:13:06 +00:00
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRendererClient);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2013-12-23 14:08:45 +00:00
|
|
|
#endif // ATOM_RENDERER_ATOM_RENDERER_CLIENT_H_
|