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

Unified Diff: content/test/test_render_frame.cc

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/test/test_render_frame.cc
diff --git a/content/test/test_render_frame.cc b/content/test/test_render_frame.cc
index f63a0c84a5abe187a73448da36f51f696c67a7e2..fd3231400343be1aa0699e4cb5691fbd046ee25d 100644
--- a/content/test/test_render_frame.cc
+++ b/content/test/test_render_frame.cc
@@ -5,6 +5,7 @@
#include "content/test/test_render_frame.h"
#include "content/common/navigation_params.h"
+#include "content/common/resource_request_body.h"
#include "content/public/common/browser_side_navigation_policy.h"
#include "content/public/common/resource_response.h"
@@ -29,7 +30,7 @@ void TestRenderFrame::Navigate(const CommonNavigationParams& common_params,
// PlzNavigate
if (IsBrowserSideNavigationEnabled()) {
OnCommitNavigation(ResourceResponseHead(), GURL(), common_params,
- request_params);
+ request_params, nullptr);
} else {
OnNavigate(common_params, start_params, request_params);
}

Powered by Google App Engine
This is Rietveld 408576698