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.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "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
|
|
|
|
2015-10-06 15:33:14 +00:00
|
|
|
#include "atom/common/api/api_messages.h"
|
2015-01-24 04:43:38 +00:00
|
|
|
#include "atom/common/api/atom_bindings.h"
|
2016-02-02 15:47:19 +00:00
|
|
|
#include "atom/common/api/event_emitter_caller.h"
|
2016-04-02 11:35:57 +00:00
|
|
|
#include "atom/common/color_util.h"
|
2016-05-26 23:51:02 +00:00
|
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/common/node_bindings.h"
|
|
|
|
#include "atom/common/options_switches.h"
|
|
|
|
#include "atom/renderer/atom_render_view_observer.h"
|
2016-09-21 16:17:30 +00:00
|
|
|
#include "atom/renderer/content_settings_observer.h"
|
2015-03-13 23:33:06 +00:00
|
|
|
#include "atom/renderer/guest_view_container.h"
|
2015-09-07 03:12:42 +00:00
|
|
|
#include "atom/renderer/node_array_buffer_bridge.h"
|
2016-05-26 23:51:02 +00:00
|
|
|
#include "atom/renderer/preferences_manager.h"
|
2015-05-22 07:01:13 +00:00
|
|
|
#include "base/command_line.h"
|
2015-12-16 10:06:38 +00:00
|
|
|
#include "chrome/renderer/media/chrome_key_systems.h"
|
2015-04-28 15:45:58 +00:00
|
|
|
#include "chrome/renderer/pepper/pepper_helper.h"
|
2014-08-21 08:14:22 +00:00
|
|
|
#include "chrome/renderer/printing/print_web_view_helper.h"
|
2014-10-07 13:27:15 +00:00
|
|
|
#include "chrome/renderer/tts_dispatcher.h"
|
2014-10-26 06:05:54 +00:00
|
|
|
#include "content/public/common/content_constants.h"
|
2015-05-22 07:24:34 +00:00
|
|
|
#include "content/public/renderer/render_frame.h"
|
2015-05-22 07:01:13 +00:00
|
|
|
#include "content/public/renderer/render_frame_observer.h"
|
2014-09-01 10:43:43 +00:00
|
|
|
#include "content/public/renderer/render_thread.h"
|
2016-03-14 13:54:04 +00:00
|
|
|
#include "content/public/renderer/render_view.h"
|
2015-10-06 15:33:14 +00:00
|
|
|
#include "ipc/ipc_message_macros.h"
|
2016-05-26 23:51:02 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2014-10-22 15:36:31 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebCustomElement.h"
|
2016-05-27 06:10:46 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebDocument.h"
|
2016-05-05 01:50:06 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebFrameWidget.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebKit.h"
|
2015-05-22 07:24:34 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
2014-10-26 06:05:54 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebPluginParams.h"
|
2016-08-26 22:30:02 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
|
2016-05-10 06:43:25 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebScriptSource.h"
|
2015-12-08 19:21:46 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebSecurityPolicy.h"
|
2015-10-06 15:33:14 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebView.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
|
2016-05-06 05:57:43 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#include "base/mac/mac_util.h"
|
|
|
|
#include "base/strings/sys_string_conversions.h"
|
|
|
|
#endif
|
|
|
|
|
2015-07-09 23:48:02 +00:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
#include <shlobj.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-06 08:24:37 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 02:41:20 +00:00
|
|
|
namespace {
|
|
|
|
|
2015-05-22 07:01:13 +00:00
|
|
|
// Helper class to forward the messages to the client.
|
|
|
|
class AtomRenderFrameObserver : public content::RenderFrameObserver {
|
|
|
|
public:
|
|
|
|
AtomRenderFrameObserver(content::RenderFrame* frame,
|
2016-12-08 23:51:17 +00:00
|
|
|
AtomRendererClient* renderer_client,
|
|
|
|
bool isolated_world)
|
2015-05-22 07:01:13 +00:00
|
|
|
: content::RenderFrameObserver(frame),
|
2016-05-27 06:10:46 +00:00
|
|
|
render_frame_(frame),
|
2016-12-08 23:51:17 +00:00
|
|
|
isolated_world_(isolated_world),
|
|
|
|
main_context_created_(false),
|
|
|
|
isolated_context_created_(false),
|
2015-05-22 07:01:13 +00:00
|
|
|
renderer_client_(renderer_client) {}
|
|
|
|
|
|
|
|
// content::RenderFrameObserver:
|
2016-05-30 05:56:31 +00:00
|
|
|
void DidClearWindowObject() override {
|
|
|
|
renderer_client_->DidClearWindowObject(render_frame_);
|
|
|
|
}
|
|
|
|
|
2016-12-08 23:51:17 +00:00
|
|
|
void CreateIsolatedWorldContext() {
|
|
|
|
blink::WebScriptSource source("void 0");
|
|
|
|
render_frame_->GetWebFrame()->executeScriptInIsolatedWorld(
|
2016-12-09 00:06:17 +00:00
|
|
|
kIsolatedWorldId, &source, 1, 1);
|
2016-12-08 23:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IsMainWorld(int world_id) {
|
2016-12-09 00:06:17 +00:00
|
|
|
return world_id == kMainWorldId;
|
2016-12-08 23:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IsIsolatedWorld(int world_id) {
|
2016-12-09 00:06:17 +00:00
|
|
|
return world_id == kIsolatedWorldId;
|
2016-12-08 23:51:17 +00:00
|
|
|
}
|
|
|
|
|
2015-05-22 07:24:34 +00:00
|
|
|
void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
|
|
|
int extension_group,
|
2016-02-02 15:38:49 +00:00
|
|
|
int world_id) override {
|
2016-12-08 23:51:17 +00:00
|
|
|
if (!main_context_created_ && IsMainWorld(world_id)) {
|
|
|
|
main_context_created_ = true;
|
|
|
|
if (isolated_world_) {
|
|
|
|
CreateIsolatedWorldContext();
|
|
|
|
} else {
|
|
|
|
renderer_client_->DidCreateScriptContext(context, render_frame_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isolated_world_ && !isolated_context_created_
|
|
|
|
&& IsIsolatedWorld(world_id)) {
|
|
|
|
isolated_context_created_ = true;
|
|
|
|
renderer_client_->DidCreateScriptContext(context, render_frame_);
|
|
|
|
}
|
2015-05-22 07:01:13 +00:00
|
|
|
}
|
2016-12-08 23:51:17 +00:00
|
|
|
|
2016-02-02 15:38:49 +00:00
|
|
|
void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
|
|
|
int world_id) override {
|
2016-12-08 23:51:17 +00:00
|
|
|
if (isolated_world_) {
|
|
|
|
if (IsIsolatedWorld(world_id))
|
|
|
|
renderer_client_->WillReleaseScriptContext(context, render_frame_);
|
|
|
|
} else if (IsMainWorld(world_id)) {
|
|
|
|
renderer_client_->WillReleaseScriptContext(context, render_frame_);
|
|
|
|
}
|
2016-02-02 15:38:49 +00:00
|
|
|
}
|
|
|
|
|
2016-09-06 08:24:37 +00:00
|
|
|
void OnDestruct() override {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2015-05-22 07:01:13 +00:00
|
|
|
private:
|
2016-05-27 06:10:46 +00:00
|
|
|
content::RenderFrame* render_frame_;
|
2016-12-08 23:51:17 +00:00
|
|
|
bool isolated_world_;
|
|
|
|
bool main_context_created_;
|
|
|
|
bool isolated_context_created_;
|
2015-05-22 07:01:13 +00:00
|
|
|
AtomRendererClient* renderer_client_;
|
|
|
|
|
2016-12-09 00:06:17 +00:00
|
|
|
const int kMainWorldId = 0;
|
|
|
|
const int kIsolatedWorldId = 999;
|
|
|
|
|
2015-05-22 07:01:13 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomRenderFrameObserver);
|
|
|
|
};
|
|
|
|
|
2016-05-26 23:51:02 +00:00
|
|
|
v8::Local<v8::Value> GetRenderProcessPreferences(
|
|
|
|
const PreferencesManager* preferences_manager, v8::Isolate* isolate) {
|
|
|
|
if (preferences_manager->preferences())
|
|
|
|
return mate::ConvertToV8(isolate, *preferences_manager->preferences());
|
|
|
|
else
|
|
|
|
return v8::Null(isolate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddRenderBindings(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> process,
|
|
|
|
const PreferencesManager* preferences_manager) {
|
|
|
|
mate::Dictionary dict(isolate, process);
|
|
|
|
dict.SetMethod(
|
|
|
|
"getRenderProcessPreferences",
|
|
|
|
base::Bind(GetRenderProcessPreferences, preferences_manager));
|
|
|
|
}
|
|
|
|
|
2016-05-27 06:10:46 +00:00
|
|
|
bool IsDevToolsExtension(content::RenderFrame* render_frame) {
|
|
|
|
return static_cast<GURL>(render_frame->GetWebFrame()->document().url())
|
|
|
|
.SchemeIs("chrome-extension");
|
|
|
|
}
|
|
|
|
|
2016-11-14 16:20:04 +00:00
|
|
|
std::vector<std::string> ParseSchemesCLISwitch(const char* switch_name) {
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
std::string custom_schemes = command_line->GetSwitchValueASCII(switch_name);
|
2016-12-12 20:45:57 +00:00
|
|
|
return base::SplitString(
|
|
|
|
custom_schemes, ",", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
|
2016-11-14 16:20:04 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 02:41:20 +00:00
|
|
|
} // namespace
|
|
|
|
|
2013-04-20 03:13:06 +00:00
|
|
|
AtomRendererClient::AtomRendererClient()
|
2014-10-25 10:51:26 +00:00
|
|
|
: node_bindings_(NodeBindings::Create(false)),
|
2015-08-31 13:59:13 +00:00
|
|
|
atom_bindings_(new AtomBindings) {
|
2016-06-08 07:27:16 +00:00
|
|
|
// Parse --standard-schemes=scheme1,scheme2
|
2016-12-12 20:45:57 +00:00
|
|
|
std::vector<std::string> standard_schemes_list =
|
|
|
|
ParseSchemesCLISwitch(switches::kStandardSchemes);
|
|
|
|
for (const std::string& scheme : standard_schemes_list)
|
2016-11-14 16:20:04 +00:00
|
|
|
url::AddStandardScheme(scheme.c_str(), url::SCHEME_WITHOUT_PORT);
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomRendererClient::~AtomRendererClient() {
|
|
|
|
}
|
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
void AtomRendererClient::RenderThreadStarted() {
|
2014-10-22 15:36:31 +00:00
|
|
|
blink::WebCustomElement::addEmbedderCustomElementName("webview");
|
|
|
|
blink::WebCustomElement::addEmbedderCustomElementName("browserplugin");
|
|
|
|
|
2015-09-07 03:12:42 +00:00
|
|
|
OverrideNodeArrayBuffer();
|
2015-07-13 19:23:19 +00:00
|
|
|
|
2016-05-26 23:51:02 +00:00
|
|
|
preferences_manager_.reset(new PreferencesManager);
|
|
|
|
|
2015-07-13 19:23:19 +00:00
|
|
|
#if defined(OS_WIN)
|
2016-05-06 05:57:43 +00:00
|
|
|
// Set ApplicationUserModelID in renderer process.
|
2015-07-13 19:23:19 +00:00
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
base::string16 app_id =
|
|
|
|
command_line->GetSwitchValueNative(switches::kAppUserModelId);
|
|
|
|
if (!app_id.empty()) {
|
|
|
|
SetCurrentProcessExplicitAppUserModelID(app_id.c_str());
|
|
|
|
}
|
|
|
|
#endif
|
2016-05-06 05:57:43 +00:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
// Disable rubber banding by default.
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (!command_line->HasSwitch(switches::kScrollBounce)) {
|
|
|
|
base::ScopedCFTypeRef<CFStringRef> key(
|
|
|
|
base::SysUTF8ToCFStringRef("NSScrollViewRubberbanding"));
|
|
|
|
base::ScopedCFTypeRef<CFStringRef> value(
|
|
|
|
base::SysUTF8ToCFStringRef("false"));
|
|
|
|
CFPreferencesSetAppValue(key, value, kCFPreferencesCurrentApplication);
|
|
|
|
CFPreferencesAppSynchronize(kCFPreferencesCurrentApplication);
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-01 10:43:43 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 15:45:58 +00:00
|
|
|
void AtomRendererClient::RenderFrameCreated(
|
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
new PepperHelper(render_frame);
|
2016-12-08 23:51:17 +00:00
|
|
|
|
|
|
|
bool isolated_world = base::CommandLine::ForCurrentProcess()->HasSwitch(
|
|
|
|
switches::kIsolatedWorld);
|
|
|
|
new AtomRenderFrameObserver(render_frame, this, isolated_world);
|
|
|
|
|
2016-09-21 16:17:30 +00:00
|
|
|
new ContentSettingsObserver(render_frame);
|
2015-12-08 19:21:46 +00:00
|
|
|
|
2016-02-02 16:05:27 +00:00
|
|
|
// Allow file scheme to handle service worker by default.
|
2016-05-27 06:10:46 +00:00
|
|
|
// FIXME(zcbenz): Can this be moved elsewhere?
|
2016-02-02 16:05:27 +00:00
|
|
|
blink::WebSecurityPolicy::registerURLSchemeAsAllowingServiceWorkers("file");
|
2016-12-12 20:42:30 +00:00
|
|
|
|
2016-11-14 16:20:04 +00:00
|
|
|
// Parse --secure-schemes=scheme1,scheme2
|
2016-12-12 20:45:57 +00:00
|
|
|
std::vector<std::string> secure_schemes_list =
|
|
|
|
ParseSchemesCLISwitch(switches::kSecureSchemes);
|
|
|
|
for (const std::string& secure_scheme : secure_schemes_list)
|
|
|
|
blink::WebSecurityPolicy::registerURLSchemeAsSecure(
|
|
|
|
blink::WebString::fromUTF8(secure_scheme));
|
2015-04-28 15:45:58 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
void AtomRendererClient::RenderViewCreated(content::RenderView* render_view) {
|
2016-05-09 10:37:38 +00:00
|
|
|
new printing::PrintWebViewHelper(render_view);
|
|
|
|
new AtomRenderViewObserver(render_view, this);
|
|
|
|
|
2016-05-05 01:50:06 +00:00
|
|
|
blink::WebFrameWidget* web_frame_widget = render_view->GetWebFrameWidget();
|
2016-05-09 10:37:38 +00:00
|
|
|
if (!web_frame_widget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
base::CommandLine* cmd = base::CommandLine::ForCurrentProcess();
|
2016-04-02 11:35:57 +00:00
|
|
|
if (cmd->HasSwitch(switches::kGuestInstanceID)) { // webview.
|
2016-05-09 10:37:38 +00:00
|
|
|
web_frame_widget->setBaseBackgroundColor(SK_ColorTRANSPARENT);
|
2016-04-02 11:35:57 +00:00
|
|
|
} else { // normal window.
|
|
|
|
// If backgroundColor is specified then use it.
|
|
|
|
std::string name = cmd->GetSwitchValueASCII(switches::kBackgroundColor);
|
|
|
|
// Otherwise use white background.
|
|
|
|
SkColor color = name.empty() ? SK_ColorWHITE : ParseHexColor(name);
|
2016-05-09 10:37:38 +00:00
|
|
|
web_frame_widget->setBaseBackgroundColor(color);
|
2016-04-02 11:35:57 +00:00
|
|
|
}
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 05:56:31 +00:00
|
|
|
void AtomRendererClient::DidClearWindowObject(
|
2016-05-10 06:43:25 +00:00
|
|
|
content::RenderFrame* render_frame) {
|
|
|
|
// Make sure every page will get a script context created.
|
2016-05-30 05:56:31 +00:00
|
|
|
render_frame->GetWebFrame()->executeScript(blink::WebScriptSource("void 0"));
|
|
|
|
}
|
2016-05-27 02:07:06 +00:00
|
|
|
|
2016-05-30 05:56:31 +00:00
|
|
|
void AtomRendererClient::RunScriptsAtDocumentStart(
|
|
|
|
content::RenderFrame* render_frame) {
|
2016-05-27 06:10:46 +00:00
|
|
|
// Inform the document start pharse.
|
2016-05-27 02:07:06 +00:00
|
|
|
node::Environment* env = node_bindings_->uv_env();
|
|
|
|
if (env) {
|
|
|
|
v8::HandleScope handle_scope(env->isolate());
|
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "document-start");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AtomRendererClient::RunScriptsAtDocumentEnd(
|
|
|
|
content::RenderFrame* render_frame) {
|
2016-05-27 06:10:46 +00:00
|
|
|
// Inform the document end pharse.
|
2016-05-27 02:07:06 +00:00
|
|
|
node::Environment* env = node_bindings_->uv_env();
|
|
|
|
if (env) {
|
|
|
|
v8::HandleScope handle_scope(env->isolate());
|
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "document-end");
|
|
|
|
}
|
2016-05-10 06:43:25 +00:00
|
|
|
}
|
|
|
|
|
2014-10-07 13:18:44 +00:00
|
|
|
blink::WebSpeechSynthesizer* AtomRendererClient::OverrideSpeechSynthesizer(
|
|
|
|
blink::WebSpeechSynthesizerClient* client) {
|
2014-10-07 13:27:15 +00:00
|
|
|
return new TtsDispatcher(client);
|
2014-10-07 13:18:44 +00:00
|
|
|
}
|
|
|
|
|
2014-10-26 06:05:54 +00:00
|
|
|
bool AtomRendererClient::OverrideCreatePlugin(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
blink::WebLocalFrame* frame,
|
|
|
|
const blink::WebPluginParams& params,
|
|
|
|
blink::WebPlugin** plugin) {
|
|
|
|
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
if (params.mimeType.utf8() == content::kBrowserPluginMimeType ||
|
|
|
|
command_line->HasSwitch(switches::kEnablePlugins))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*plugin = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-22 07:24:34 +00:00
|
|
|
void AtomRendererClient::DidCreateScriptContext(
|
2016-05-27 06:10:46 +00:00
|
|
|
v8::Handle<v8::Context> context, content::RenderFrame* render_frame) {
|
|
|
|
// Only allow node integration for the main frame, unless it is a devtools
|
|
|
|
// extension page.
|
|
|
|
if (!render_frame->IsMainFrame() && !IsDevToolsExtension(render_frame))
|
|
|
|
return;
|
|
|
|
|
2016-03-27 09:09:21 +00:00
|
|
|
// Whether the node binding has been initialized.
|
|
|
|
bool first_time = node_bindings_->uv_env() == nullptr;
|
|
|
|
|
|
|
|
// Prepare the node bindings.
|
|
|
|
if (first_time) {
|
|
|
|
node_bindings_->Initialize();
|
|
|
|
node_bindings_->PrepareMessageLoop();
|
|
|
|
}
|
2013-12-23 14:08:45 +00:00
|
|
|
|
|
|
|
// Setup node environment for each window.
|
2016-12-08 23:51:17 +00:00
|
|
|
node::Environment* env = node_bindings_->CreateEnvironment(context);
|
2013-12-23 14:08:45 +00:00
|
|
|
|
2016-09-16 22:57:07 +00:00
|
|
|
// Add Electron extended APIs.
|
2015-01-21 23:02:09 +00:00
|
|
|
atom_bindings_->BindTo(env->isolate(), env->process_object());
|
2016-05-26 23:51:02 +00:00
|
|
|
AddRenderBindings(env->isolate(), env->process_object(),
|
|
|
|
preferences_manager_.get());
|
2014-01-09 13:35:29 +00:00
|
|
|
|
2016-03-27 10:21:12 +00:00
|
|
|
// Load everything.
|
|
|
|
node_bindings_->LoadEnvironment(env);
|
|
|
|
|
2016-03-27 09:09:21 +00:00
|
|
|
if (first_time) {
|
|
|
|
// Make uv loop being wrapped by window context.
|
2014-01-09 14:13:06 +00:00
|
|
|
node_bindings_->set_uv_env(env);
|
2015-01-22 00:40:19 +00:00
|
|
|
|
2016-03-27 09:09:21 +00:00
|
|
|
// Give the node loop a run to make sure everything is ready.
|
|
|
|
node_bindings_->RunMessageLoop();
|
|
|
|
}
|
2015-01-21 23:35:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-09 00:58:27 +00:00
|
|
|
v8::Local<v8::Context> AtomRendererClient::GetContext() {
|
|
|
|
return node_bindings_->uv_env()->context();
|
|
|
|
}
|
|
|
|
|
2016-02-02 15:38:49 +00:00
|
|
|
void AtomRendererClient::WillReleaseScriptContext(
|
2016-05-27 06:10:46 +00:00
|
|
|
v8::Handle<v8::Context> context, content::RenderFrame* render_frame) {
|
2016-06-20 07:51:42 +00:00
|
|
|
// Only allow node integration for the main frame, unless it is a devtools
|
|
|
|
// extension page.
|
|
|
|
if (!render_frame->IsMainFrame() && !IsDevToolsExtension(render_frame))
|
|
|
|
return;
|
|
|
|
|
2016-05-28 03:07:08 +00:00
|
|
|
node::Environment* env = node::Environment::GetCurrent(context);
|
|
|
|
if (env)
|
2016-05-27 06:10:46 +00:00
|
|
|
mate::EmitEvent(env->isolate(), env->process_object(), "exit");
|
2016-02-02 15:38:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-02 07:16:49 +00:00
|
|
|
bool AtomRendererClient::ShouldFork(blink::WebLocalFrame* frame,
|
2014-01-14 08:03:01 +00:00
|
|
|
const GURL& url,
|
|
|
|
const std::string& http_method,
|
|
|
|
bool is_initial_navigation,
|
|
|
|
bool is_server_redirect,
|
|
|
|
bool* send_referrer) {
|
|
|
|
// Handle all the navigations and reloads in browser.
|
2014-05-13 06:45:30 +00:00
|
|
|
// FIXME We only support GET here because http method will be ignored when
|
|
|
|
// the OpenURLFromTab is triggered, which means form posting would not work,
|
|
|
|
// we should solve this by patching Chromium in future.
|
2015-08-29 13:50:09 +00:00
|
|
|
*send_referrer = true;
|
2016-01-29 03:52:31 +00:00
|
|
|
return http_method == "GET";
|
2014-01-14 08:03:01 +00:00
|
|
|
}
|
|
|
|
|
2015-03-13 23:33:06 +00:00
|
|
|
content::BrowserPluginDelegate* AtomRendererClient::CreateBrowserPluginDelegate(
|
|
|
|
content::RenderFrame* render_frame,
|
|
|
|
const std::string& mime_type,
|
|
|
|
const GURL& original_url) {
|
|
|
|
if (mime_type == content::kBrowserPluginMimeType) {
|
|
|
|
return new GuestViewContainer(render_frame);
|
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-04 06:08:55 +00:00
|
|
|
void AtomRendererClient::AddSupportedKeySystems(
|
|
|
|
std::vector<std::unique_ptr<::media::KeySystemProperties>>* key_systems) {
|
|
|
|
AddChromeKeySystems(key_systems);
|
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
} // namespace atom
|