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

Unified Diff: content/test/test_render_frame_host_factory.cc

Issue 26316005: Move out DidStartProvisionalLoad from WebContentsImpl into Navigator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comments to NavigatorDelegate methods and change param type. Created 7 years, 1 month 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: content/test/test_render_frame_host_factory.cc
diff --git a/content/test/test_render_frame_host_factory.cc b/content/test/test_render_frame_host_factory.cc
index c308aed3cf078188729bc33dfd8e8941b27f4442..96c94d4d88d107f646fe7bd2b3f3579eb824578f 100644
--- a/content/test/test_render_frame_host_factory.cc
+++ b/content/test/test_render_frame_host_factory.cc
@@ -23,11 +23,13 @@ scoped_ptr<RenderFrameHostImpl>
TestRenderFrameHostFactory::CreateRenderFrameHost(
RenderViewHostImpl* render_view_host,
FrameTree* frame_tree,
+ FrameTreeNode* frame_tree_node,
int routing_id,
bool is_swapped_out) {
return make_scoped_ptr(
new TestRenderFrameHost(
- render_view_host, frame_tree, routing_id, is_swapped_out))
+ render_view_host, frame_tree, frame_tree_node, routing_id,
+ is_swapped_out))
.PassAs<RenderFrameHostImpl>();
}

Powered by Google App Engine
This is Rietveld 408576698