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

Unified Diff: content/test/test_web_contents.cc

Issue 556703004: Remove page id from FrameNavigateParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 6 years, 2 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/test/test_render_view_host.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_web_contents.cc
diff --git a/content/test/test_web_contents.cc b/content/test/test_web_contents.cc
index f2ee15df13eecf5912deb8d52ad108142ab3f11c..bbf2aaf449b5bd6038be36d28fb549f439c5c01d 100644
--- a/content/test/test_web_contents.cc
+++ b/content/test/test_web_contents.cc
@@ -77,7 +77,6 @@ void TestWebContents::TestDidNavigateWithReferrer(
ui::PageTransition transition) {
FrameHostMsg_DidCommitProvisionalLoad_Params params;
- params.page_id = page_id;
params.url = url;
params.referrer = referrer;
params.transition = transition;
@@ -93,7 +92,7 @@ void TestWebContents::TestDidNavigateWithReferrer(
RenderFrameHostImpl* rfhi =
static_cast<RenderFrameHostImpl*>(render_frame_host);
- rfhi->frame_tree_node()->navigator()->DidNavigate(rfhi, params);
+ rfhi->frame_tree_node()->navigator()->DidNavigate(rfhi, page_id, params);
}
WebPreferences TestWebContents::TestComputeWebkitPrefs() {
« no previous file with comments | « content/test/test_render_view_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698