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

Unified Diff: chrome/renderer/extensions/tabs_custom_bindings.cc

Issue 11571014: Lazy load chrome.* APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android compilation 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/extensions/tabs_custom_bindings.h ('k') | chrome/renderer/extensions/tts_custom_bindings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/tabs_custom_bindings.cc
diff --git a/chrome/renderer/extensions/tabs_custom_bindings.cc b/chrome/renderer/extensions/tabs_custom_bindings.cc
index 5492d349454b11a6e3e9a8d6f06d9da8238ac716..7d16093e626af5e8dc37cc193133d3c2e4e42e67 100644
--- a/chrome/renderer/extensions/tabs_custom_bindings.cc
+++ b/chrome/renderer/extensions/tabs_custom_bindings.cc
@@ -13,8 +13,9 @@
namespace extensions {
-TabsCustomBindings::TabsCustomBindings()
- : ChromeV8Extension(NULL) {
+TabsCustomBindings::TabsCustomBindings(Dispatcher* dispatcher,
+ v8::Handle<v8::Context> context)
+ : ChromeV8Extension(dispatcher, context) {
RouteStaticFunction("OpenChannelToTab", &OpenChannelToTab);
}
@@ -23,7 +24,8 @@ v8::Handle<v8::Value> TabsCustomBindings::OpenChannelToTab(
const v8::Arguments& args) {
// Get the current RenderView so that we can send a routed IPC message from
// the correct source.
- content::RenderView* renderview = GetCurrentRenderView();
+ TabsCustomBindings* self = GetFromArguments<TabsCustomBindings>(args);
+ content::RenderView* renderview = self->GetRenderView();
if (!renderview)
return v8::Undefined();
« no previous file with comments | « chrome/renderer/extensions/tabs_custom_bindings.h ('k') | chrome/renderer/extensions/tts_custom_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698