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

Unified Diff: content/browser/frame_host/navigation_request_info.cc

Issue 872473003: PlzNavigate: Remove the RequestNavigation IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits + fix compilation error Created 5 years, 10 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/browser/frame_host/navigation_request_info.h ('k') | content/browser/frame_host/navigator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/navigation_request_info.cc
diff --git a/content/browser/frame_host/navigation_request_info.cc b/content/browser/frame_host/navigation_request_info.cc
index 91568ad36df55e3f0f963a2fafbbd7f70167c88b..76b98c36d5f59ff77f59556e78d5c40462debb39 100644
--- a/content/browser/frame_host/navigation_request_info.cc
+++ b/content/browser/frame_host/navigation_request_info.cc
@@ -4,15 +4,23 @@
#include "content/browser/frame_host/navigation_request_info.h"
-#include "content/common/resource_request_body.h"
-
namespace content {
NavigationRequestInfo::NavigationRequestInfo(
- const FrameHostMsg_BeginNavigation_Params& params)
- : navigation_params(params),
- is_main_frame(true),
- parent_is_main_frame(false) {
+ const CommonNavigationParams& common_params,
+ const BeginNavigationParams& begin_params,
+ const GURL& first_party_for_cookies,
+ bool is_main_frame,
+ bool parent_is_main_frame,
+ scoped_refptr<ResourceRequestBody> request_body)
+ : common_params(common_params),
+ begin_params(begin_params),
+ first_party_for_cookies(first_party_for_cookies),
+ is_main_frame(is_main_frame),
+ parent_is_main_frame(parent_is_main_frame),
+ request_body(request_body) {
}
+NavigationRequestInfo::~NavigationRequestInfo() {}
+
} // namespace content
« no previous file with comments | « content/browser/frame_host/navigation_request_info.h ('k') | content/browser/frame_host/navigator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698