// Copyright (c) 2013 GitHub, Inc. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "renderer/api/atom_renderer_bindings.h" #include "common/v8/native_type_conversions.h" #include "content/public/renderer/render_view.h" #include "third_party/WebKit/public/web/WebFrame.h" #include "third_party/WebKit/public/web/WebView.h" #include "common/v8/node_common.h" namespace atom { namespace { v8::Handle GetProcessObject(v8::Handle context) { v8::Handle process = context->Global()->Get(v8::String::New("process"))->ToObject(); DCHECK(!process.IsEmpty()); return process; } } // namespace AtomRendererBindings::AtomRendererBindings() { } AtomRendererBindings::~AtomRendererBindings() { } void AtomRendererBindings::BindToFrame(WebKit::WebFrame* frame) { v8::HandleScope handle_scope(node_isolate); v8::Handle context = frame->mainWorldScriptContext(); if (context.IsEmpty()) return; v8::Context::Scope scope(context); AtomBindings::BindTo(GetProcessObject(context)); } void AtomRendererBindings::OnBrowserMessage(content::RenderView* render_view, const string16& channel, const base::ListValue& args) { if (!render_view->GetWebView()) return; v8::HandleScope handle_scope(node_isolate); v8::Local context = render_view->GetWebView()->mainFrame()->mainWorldScriptContext(); if (context.IsEmpty()) return; v8::Context::Scope context_scope(context); v8::Handle process = GetProcessObject(context); scoped_ptr converter(new V8ValueConverter); std::vector> arguments; arguments.reserve(1 + args.GetSize()); arguments.push_back(ToV8Value(channel)); for (size_t i = 0; i < args.GetSize(); i++) { const base::Value* value; if (args.Get(i, &value)) arguments.push_back(converter->ToV8Value(value, context)); } node::MakeCallback(process, "emit", arguments.size(), &arguments[0]); } } // namespace atom