Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: chrome/renderer/extensions/runtime_custom_bindings.cc

Issue 12632004: Revert 186643 - Caused a 10% regression on SunSpider benchmark (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/extensions/runtime_custom_bindings.h" 5 #include "chrome/renderer/extensions/runtime_custom_bindings.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/common/extensions/extension.h" 10 #include "chrome/common/extensions/extension.h"
11 #include "chrome/common/extensions/extension_messages.h" 11 #include "chrome/common/extensions/extension_messages.h"
12 #include "chrome/common/extensions/manifest.h" 12 #include "chrome/common/extensions/manifest.h"
13 #include "chrome/renderer/extensions/chrome_v8_context.h" 13 #include "chrome/renderer/extensions/chrome_v8_context.h"
14 #include "chrome/renderer/extensions/dispatcher.h" 14 #include "chrome/renderer/extensions/dispatcher.h"
15 #include "content/public/renderer/render_view.h" 15 #include "content/public/renderer/render_view.h"
16 #include "content/public/renderer/v8_value_converter.h" 16 #include "content/public/renderer/v8_value_converter.h"
17 17
18 using content::V8ValueConverter; 18 using content::V8ValueConverter;
19 19
20 namespace extensions { 20 namespace extensions {
21 21
22 RuntimeCustomBindings::RuntimeCustomBindings(Dispatcher* dispatcher, 22 RuntimeCustomBindings::RuntimeCustomBindings(Dispatcher* dispatcher,
23 ChromeV8Context* context) 23 ChromeV8Context* context)
24 : ChromeV8Extension(dispatcher, context->v8_context()), 24 : ChromeV8Extension(dispatcher), context_(context) {
25 context_(context) {
26 RouteFunction("GetManifest", 25 RouteFunction("GetManifest",
27 base::Bind(&RuntimeCustomBindings::GetManifest, 26 base::Bind(&RuntimeCustomBindings::GetManifest,
28 base::Unretained(this))); 27 base::Unretained(this)));
29 RouteFunction("OpenChannelToExtension", 28 RouteStaticFunction("OpenChannelToExtension", &OpenChannelToExtension);
30 base::Bind(&RuntimeCustomBindings::OpenChannelToExtension,
31 base::Unretained(this)));
32 RouteFunction("OpenChannelToNativeApp", 29 RouteFunction("OpenChannelToNativeApp",
33 base::Bind(&RuntimeCustomBindings::OpenChannelToNativeApp, 30 base::Bind(&RuntimeCustomBindings::OpenChannelToNativeApp,
34 base::Unretained(this))); 31 base::Unretained(this)));
35 } 32 }
36 33
37 RuntimeCustomBindings::~RuntimeCustomBindings() {} 34 RuntimeCustomBindings::~RuntimeCustomBindings() {}
38 35
36 // static
39 v8::Handle<v8::Value> RuntimeCustomBindings::OpenChannelToExtension( 37 v8::Handle<v8::Value> RuntimeCustomBindings::OpenChannelToExtension(
40 const v8::Arguments& args) { 38 const v8::Arguments& args) {
41 // Get the current RenderView so that we can send a routed IPC message from 39 // Get the current RenderView so that we can send a routed IPC message from
42 // the correct source. 40 // the correct source.
43 content::RenderView* renderview = GetRenderView(); 41 content::RenderView* renderview = GetCurrentRenderView();
44 if (!renderview) 42 if (!renderview)
45 return v8::Undefined(); 43 return v8::Undefined();
46 44
47 // The Javascript code should validate/fill the arguments. 45 // The Javascript code should validate/fill the arguments.
48 CHECK(args.Length() >= 3 && 46 CHECK(args.Length() >= 3 &&
49 args[0]->IsString() && 47 args[0]->IsString() &&
50 args[1]->IsString() && 48 args[1]->IsString() &&
51 args[2]->IsString()); 49 args[2]->IsString());
52 50
53 std::string source_id = *v8::String::Utf8Value(args[0]->ToString()); 51 std::string source_id = *v8::String::Utf8Value(args[0]->ToString());
54 std::string target_id = *v8::String::Utf8Value(args[1]->ToString()); 52 std::string target_id = *v8::String::Utf8Value(args[1]->ToString());
55 std::string channel_name = *v8::String::Utf8Value(args[2]->ToString()); 53 std::string channel_name = *v8::String::Utf8Value(args[2]->ToString());
56 int port_id = -1; 54 int port_id = -1;
57 renderview->Send(new ExtensionHostMsg_OpenChannelToExtension( 55 renderview->Send(new ExtensionHostMsg_OpenChannelToExtension(
58 renderview->GetRoutingID(), 56 renderview->GetRoutingID(),
59 source_id, 57 source_id,
60 target_id, 58 target_id,
61 channel_name, 59 channel_name,
62 &port_id)); 60 &port_id));
63 return v8::Integer::New(port_id); 61 return v8::Integer::New(port_id);
64 } 62 }
65 63
66 v8::Handle<v8::Value> RuntimeCustomBindings::OpenChannelToNativeApp( 64 v8::Handle<v8::Value> RuntimeCustomBindings::OpenChannelToNativeApp(
67 const v8::Arguments& args) { 65 const v8::Arguments& args) {
68 // Verify that the extension has permission to use native messaging. 66 // Verify that the extension has permission to use native messaging.
69 if (!dispatcher()->CheckContextAccessToExtensionAPI( 67 if (!dispatcher()->CheckCurrentContextAccessToExtensionAPI(
70 "nativeMessaging", context_)) { 68 "nativeMessaging")) {
71 return v8::Undefined(); 69 return v8::Undefined();
72 } 70 }
73 71
74 // Get the current RenderView so that we can send a routed IPC message from 72 // Get the current RenderView so that we can send a routed IPC message from
75 // the correct source. 73 // the correct source.
76 content::RenderView* renderview = GetRenderView(); 74 content::RenderView* renderview = GetCurrentRenderView();
77 if (!renderview) 75 if (!renderview)
78 return v8::Undefined(); 76 return v8::Undefined();
79 77
80 // The Javascript code should validate/fill the arguments. 78 // The Javascript code should validate/fill the arguments.
81 CHECK(args.Length() >= 2 && 79 CHECK(args.Length() >= 2 &&
82 args[0]->IsString() && 80 args[0]->IsString() &&
83 args[1]->IsString()); 81 args[1]->IsString());
84 82
85 std::string extension_id = *v8::String::Utf8Value(args[0]->ToString()); 83 std::string extension_id = *v8::String::Utf8Value(args[0]->ToString());
86 std::string native_app_name = *v8::String::Utf8Value(args[1]->ToString()); 84 std::string native_app_name = *v8::String::Utf8Value(args[1]->ToString());
(...skipping 10 matching lines...) Expand all
97 v8::Handle<v8::Value> RuntimeCustomBindings::GetManifest( 95 v8::Handle<v8::Value> RuntimeCustomBindings::GetManifest(
98 const v8::Arguments& args) { 96 const v8::Arguments& args) {
99 CHECK(context_->extension()); 97 CHECK(context_->extension());
100 98
101 scoped_ptr<V8ValueConverter> converter(V8ValueConverter::create()); 99 scoped_ptr<V8ValueConverter> converter(V8ValueConverter::create());
102 return converter->ToV8Value(context_->extension()->manifest()->value(), 100 return converter->ToV8Value(context_->extension()->manifest()->value(),
103 context_->v8_context()); 101 context_->v8_context());
104 } 102 }
105 103
106 } // extensions 104 } // extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/runtime_custom_bindings.h ('k') | chrome/renderer/extensions/send_request_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698