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

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

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 8 years, 10 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
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 5eaf9c4630e62d1b0ef115ecbed54f34ce46d240..abb2262f686733814a7a49ba15432b6db4d04c92 100644
--- a/chrome/renderer/extensions/tabs_custom_bindings.cc
+++ b/chrome/renderer/extensions/tabs_custom_bindings.cc
@@ -40,7 +40,7 @@ v8::Handle<v8::Value> TabsCustomBindings::OpenChannelToTab(
std::string channel_name = *v8::String::Utf8Value(args[2]->ToString());
int port_id = -1;
renderview->Send(new ExtensionHostMsg_OpenChannelToTab(
- renderview->GetRoutingId(), tab_id, extension_id, channel_name,
+ renderview->GetRoutingID(), tab_id, extension_id, channel_name,
&port_id));
return v8::Integer::New(port_id);
}
« no previous file with comments | « chrome/renderer/extensions/schema_generated_bindings.cc ('k') | chrome/renderer/extensions/user_script_idle_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698