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

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

Issue 483773002: PlzNavigate: implement CommitNavigation on the browser side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using non-inherited structs Created 6 years, 3 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/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..a82b0e91c52e35cd20cdde8d90e4c02c5f907c0a 100644
--- a/content/browser/frame_host/navigation_request_info.cc
+++ b/content/browser/frame_host/navigation_request_info.cc
@@ -9,8 +9,10 @@
namespace content {
NavigationRequestInfo::NavigationRequestInfo(
+ const CoreNavigationParams& core_params,
const FrameHostMsg_BeginNavigation_Params& params)
- : navigation_params(params),
+ : core_params(core_params),
+ navigation_params(params),
is_main_frame(true),
parent_is_main_frame(false) {
}

Powered by Google App Engine
This is Rietveld 408576698