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

Unified Diff: chrome/renderer/extensions/app_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, fix a weird runtime issue. 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/app_bindings.cc
diff --git a/chrome/renderer/extensions/app_bindings.cc b/chrome/renderer/extensions/app_bindings.cc
index e502ce65c856dcf830b40fce6499a1bc690bcc61..c11ccff1e448047c6a58caf1b02de35b5c4c8fcc 100644
--- a/chrome/renderer/extensions/app_bindings.cc
+++ b/chrome/renderer/extensions/app_bindings.cc
@@ -237,8 +237,8 @@ v8::Handle<v8::Value> AppBindingsHandler::GetAppNotifyChannel(
CHECK(render_view);
Send(new ExtensionHostMsg_GetAppNotifyChannel(
- render_view->GetRoutingId(), context_->web_frame()->document().url(),
- client_id, GetRoutingId(), callback_id));
+ render_view->GetRoutingID(), context_->web_frame()->document().url(),
+ client_id, GetRoutingID(), callback_id));
return v8::Undefined();
}

Powered by Google App Engine
This is Rietveld 408576698