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

Unified Diff: content/test/test_render_frame_host.cc

Issue 2584513003: PlzNavigate: identify same-page browser-initiated navigation. (Closed)
Patch Set: Allow renderer-initiated reloads. Created 3 years, 11 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: content/test/test_render_frame_host.cc
diff --git a/content/test/test_render_frame_host.cc b/content/test/test_render_frame_host.cc
index c50f745c4b3516c3c49511ec649049180f65c49f..34d379e745e25377e3ea87fd4acceb5c8783832c 100644
--- a/content/test/test_render_frame_host.cc
+++ b/content/test/test_render_frame_host.cc
@@ -419,6 +419,7 @@ void TestRenderFrameHost::SendRendererInitiatedNavigationRequest(
common_params.url = url;
common_params.referrer = Referrer(GURL(), blink::WebReferrerPolicyDefault);
common_params.transition = ui::PAGE_TRANSITION_LINK;
+ common_params.navigation_type = FrameMsg_Navigate_Type::DIFFERENT_DOCUMENT;
OnBeginNavigation(common_params, begin_params);
}
}
@@ -448,8 +449,10 @@ void TestRenderFrameHost::PrepareForCommitWithServerRedirect(
// PlzNavigate
NavigationRequest* request = frame_tree_node_->navigation_request();
CHECK(request);
- bool have_to_make_network_request = ShouldMakeNetworkRequestForURL(
- request->common_params().url);
+ bool have_to_make_network_request =
+ ShouldMakeNetworkRequestForURL(request->common_params().url) &&
+ !FrameMsg_Navigate_Type::IsSameDocument(
+ request->common_params().navigation_type);
// Simulate a beforeUnload ACK from the renderer if the browser is waiting for
// it. If it runs it will update the request state.

Powered by Google App Engine
This is Rietveld 408576698