OLD | NEW |
---|---|
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/app_bindings.h" | 5 #include "chrome/renderer/extensions/app_bindings.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "base/values.h" | 11 #include "base/values.h" |
12 #include "chrome/common/chrome_switches.h" | 12 #include "chrome/common/chrome_switches.h" |
13 #include "chrome/common/extensions/extension_constants.h" | 13 #include "chrome/common/extensions/extension_constants.h" |
14 #include "chrome/renderer/extensions/chrome_v8_context.h" | |
15 #include "chrome/renderer/extensions/dispatcher.h" | 14 #include "chrome/renderer/extensions/dispatcher.h" |
16 #include "chrome/renderer/extensions/extension_helper.h" | 15 #include "chrome/renderer/extensions/extension_helper.h" |
17 #include "content/public/renderer/render_view.h" | 16 #include "content/public/renderer/render_view.h" |
18 #include "content/public/renderer/v8_value_converter.h" | 17 #include "content/public/renderer/v8_value_converter.h" |
19 #include "extensions/common/extension_messages.h" | 18 #include "extensions/common/extension_messages.h" |
20 #include "extensions/common/extension_set.h" | 19 #include "extensions/common/extension_set.h" |
21 #include "extensions/common/manifest.h" | 20 #include "extensions/common/manifest.h" |
22 #include "extensions/renderer/console.h" | 21 #include "extensions/renderer/console.h" |
23 #include "grit/renderer_resources.h" | 22 #include "extensions/renderer/script_context.h" |
24 #include "third_party/WebKit/public/web/WebDocument.h" | 23 #include "third_party/WebKit/public/web/WebDocument.h" |
25 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 24 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
26 #include "v8/include/v8.h" | 25 #include "v8/include/v8.h" |
27 | 26 |
28 using blink::WebFrame; | 27 using blink::WebFrame; |
29 using blink::WebLocalFrame; | 28 using blink::WebLocalFrame; |
30 using content::V8ValueConverter; | 29 using content::V8ValueConverter; |
31 | 30 |
32 namespace extensions { | 31 namespace extensions { |
33 | 32 |
(...skipping 17 matching lines...) Expand all Loading... | |
51 return false; | 50 return false; |
52 } | 51 } |
53 | 52 |
54 return true; | 53 return true; |
55 } | 54 } |
56 | 55 |
57 const char* kInvalidCallbackIdError = "Invalid callbackId"; | 56 const char* kInvalidCallbackIdError = "Invalid callbackId"; |
58 | 57 |
59 } // namespace | 58 } // namespace |
60 | 59 |
61 AppBindings::AppBindings(Dispatcher* dispatcher, ChromeV8Context* context) | 60 AppBindings::AppBindings(Dispatcher* dispatcher, ScriptContext* context) |
62 : ChromeV8Extension(dispatcher, context), | 61 : ObjectBackedNativeHandler(context), |
63 ChromeV8ExtensionHandler(context) { | 62 ChromeV8ExtensionHandler(context), |
not at google - send to devlin
2014/04/17 15:11:10
ChromeV8ExtensionHandle is pretty cool actually. I
Ken Rockot(use gerrit already)
2014/04/17 16:17:15
Great, I think we're on the same page here.
koz (OOO until 15th September)
2014/04/22 00:13:38
Totally. De-centralising communication with the br
| |
63 dispatcher_(dispatcher) { | |
64 RouteFunction("GetIsInstalled", | 64 RouteFunction("GetIsInstalled", |
65 base::Bind(&AppBindings::GetIsInstalled, base::Unretained(this))); | 65 base::Bind(&AppBindings::GetIsInstalled, base::Unretained(this))); |
66 RouteFunction("GetDetails", | 66 RouteFunction("GetDetails", |
67 base::Bind(&AppBindings::GetDetails, base::Unretained(this))); | 67 base::Bind(&AppBindings::GetDetails, base::Unretained(this))); |
68 RouteFunction("GetDetailsForFrame", | 68 RouteFunction("GetDetailsForFrame", |
69 base::Bind(&AppBindings::GetDetailsForFrame, base::Unretained(this))); | 69 base::Bind(&AppBindings::GetDetailsForFrame, base::Unretained(this))); |
70 RouteFunction("GetInstallState", | 70 RouteFunction("GetInstallState", |
71 base::Bind(&AppBindings::GetInstallState, base::Unretained(this))); | 71 base::Bind(&AppBindings::GetInstallState, base::Unretained(this))); |
72 RouteFunction("GetRunningState", | 72 RouteFunction("GetRunningState", |
73 base::Bind(&AppBindings::GetRunningState, base::Unretained(this))); | 73 base::Bind(&AppBindings::GetRunningState, base::Unretained(this))); |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 v8::Context::Scope context_scope(context()->v8_context()); | 219 v8::Context::Scope context_scope(context()->v8_context()); |
220 v8::Handle<v8::Value> argv[] = { | 220 v8::Handle<v8::Value> argv[] = { |
221 v8::String::NewFromUtf8(isolate, state.c_str()), | 221 v8::String::NewFromUtf8(isolate, state.c_str()), |
222 v8::Integer::New(isolate, callback_id) | 222 v8::Integer::New(isolate, callback_id) |
223 }; | 223 }; |
224 context()->module_system()->CallModuleMethod( | 224 context()->module_system()->CallModuleMethod( |
225 "app", "onInstallStateResponse", arraysize(argv), argv); | 225 "app", "onInstallStateResponse", arraysize(argv), argv); |
226 } | 226 } |
227 | 227 |
228 } // namespace extensions | 228 } // namespace extensions |
OLD | NEW |