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

Unified Diff: content/renderer/render_frame_impl.h

Issue 1907443006: PlzNavigate: store POST data in the FrameNavigationEntry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 7 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/renderer/render_frame_impl.h
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
index 6ba4bb6ff5441baec59c37b82aaf2024797b70af..07ff173f36f7a1f519e480fa8bed59705d00a156 100644
--- a/content/renderer/render_frame_impl.h
+++ b/content/renderer/render_frame_impl.h
@@ -149,6 +149,7 @@ class RenderFrameObserver;
class RenderViewImpl;
class RenderWidget;
class RenderWidgetFullscreenPepper;
+class ResourceRequestBody;
class ScreenOrientationDispatcher;
class UserMediaClientImpl;
class WakeLockDispatcher;
@@ -776,7 +777,8 @@ class CONTENT_EXPORT RenderFrameImpl
void OnCommitNavigation(const ResourceResponseHead& response,
const GURL& stream_url,
const CommonNavigationParams& common_params,
- const RequestNavigationParams& request_params);
+ const RequestNavigationParams& request_params,
+ scoped_refptr<ResourceRequestBody> post_data);
void OnFailedNavigation(const CommonNavigationParams& common_params,
const RequestNavigationParams& request_params,
bool has_stale_copy_in_cache,
@@ -824,7 +826,8 @@ class CONTENT_EXPORT RenderFrameImpl
const CommonNavigationParams& common_params,
const StartNavigationParams& start_params,
const RequestNavigationParams& request_params,
- std::unique_ptr<StreamOverrideParameters> stream_params);
+ std::unique_ptr<StreamOverrideParameters> stream_params,
+ scoped_refptr<ResourceRequestBody> body);
// Update current main frame's encoding and send it to browser window.
// Since we want to let users see the right encoding info from menu

Powered by Google App Engine
This is Rietveld 408576698