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

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

Issue 1294243004: PlzNavigate: Make ServiceWorker work with PlzNavigate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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.h
diff --git a/content/browser/frame_host/navigation_request_info.h b/content/browser/frame_host/navigation_request_info.h
index c6bc6b6c8eec33d2473f2c65933b089391711ba9..9f835f0553e1396cefb0ad850ae3dc0fb99d4938 100644
--- a/content/browser/frame_host/navigation_request_info.h
+++ b/content/browser/frame_host/navigation_request_info.h
@@ -23,7 +23,8 @@ class ResourceRequestBody;
// to the IO thread by a NavigationRequest object.
struct CONTENT_EXPORT NavigationRequestInfo {
NavigationRequestInfo(const CommonNavigationParams& common_params,
- const BeginNavigationParams& params,
+ const BeginNavigationParams& begin_params,
+ const RequestNavigationParams& request_params,
const GURL& first_party_for_cookies,
bool is_main_frame,
bool parent_is_main_frame,
@@ -33,6 +34,7 @@ struct CONTENT_EXPORT NavigationRequestInfo {
const CommonNavigationParams common_params;
const BeginNavigationParams begin_params;
+ const RequestNavigationParams request_params;
clamy 2015/10/01 12:41:27 I think we can avoid copying a whole data struct f
Fabrice (no longer in Chrome) 2015/10/01 18:29:55 Done.
// Usually the URL of the document in the top-level window, which may be
// checked by the third-party cookie blocking policy.

Powered by Google App Engine
This is Rietveld 408576698