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

Unified Diff: content/shell/layout_test_controller_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
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/shell/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/layout_test_controller_bindings.cc
diff --git a/content/shell/layout_test_controller_bindings.cc b/content/shell/layout_test_controller_bindings.cc
index fae7b48c1e8e647e80cbe48252d7daf90e761097..2f3a5ad5c276b084f32b2d978d3f72cb94b4662c 100644
--- a/content/shell/layout_test_controller_bindings.cc
+++ b/content/shell/layout_test_controller_bindings.cc
@@ -43,7 +43,7 @@ v8::Handle<v8::Value> NotifyDone(const v8::Arguments& args) {
if (!view)
return v8::Undefined();
- view->Send(new ShellViewHostMsg_NotifyDone(view->GetRoutingId()));
+ view->Send(new ShellViewHostMsg_NotifyDone(view->GetRoutingID()));
return v8::Undefined();
}
@@ -52,7 +52,7 @@ v8::Handle<v8::Value> SetDumpAsText(const v8::Arguments& args) {
if (!view)
return v8::Undefined();
- view->Send(new ShellViewHostMsg_DumpAsText(view->GetRoutingId()));
+ view->Send(new ShellViewHostMsg_DumpAsText(view->GetRoutingID()));
return v8::Undefined();
}
@@ -61,7 +61,7 @@ v8::Handle<v8::Value> SetDumpChildFramesAsText(const v8::Arguments& args) {
if (!view)
return v8::Undefined();
- view->Send(new ShellViewHostMsg_DumpChildFramesAsText(view->GetRoutingId()));
+ view->Send(new ShellViewHostMsg_DumpChildFramesAsText(view->GetRoutingID()));
return v8::Undefined();
}
@@ -70,7 +70,7 @@ v8::Handle<v8::Value> SetWaitUntilDone(const v8::Arguments& args) {
if (!view)
return v8::Undefined();
- view->Send(new ShellViewHostMsg_WaitUntilDone(view->GetRoutingId()));
+ view->Send(new ShellViewHostMsg_WaitUntilDone(view->GetRoutingID()));
return v8::Undefined();
}
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/shell/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698