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

Unified Diff: content/browser/frame_host/render_frame_host_manager.h

Issue 1907443006: PlzNavigate: store POST data in the FrameNavigationEntry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Not sending POST data when cross-site redirect Created 4 years, 8 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/browser/frame_host/render_frame_host_manager.h
diff --git a/content/browser/frame_host/render_frame_host_manager.h b/content/browser/frame_host/render_frame_host_manager.h
index ee6e16ef0aaa9b05feb52d50f2d0a060a5f348c1..5dfe8e9fdac811490f070665214d8457151d660c 100644
--- a/content/browser/frame_host/render_frame_host_manager.h
+++ b/content/browser/frame_host/render_frame_host_manager.h
@@ -411,8 +411,10 @@ class CONTENT_EXPORT RenderFrameHostManager
// appropriate RenderFrameHost for the provided URL. The returned pointer will
// be for the current or the speculative RenderFrameHost and the instance is
// owned by this manager.
- RenderFrameHostImpl* GetFrameHostForNavigation(
- const NavigationRequest& request);
+ // |is_commit| should be true when the function is called when the navigation
+ // is ready to commit, false otherwise.
+ RenderFrameHostImpl* GetFrameHostForNavigation(NavigationRequest* request,
+ bool is_commit);
// PlzNavigate
// Clean up any state for any ongoing navigation.

Powered by Google App Engine
This is Rietveld 408576698