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

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

Issue 1294243004: PlzNavigate: Make ServiceWorker work with PlzNavigate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a spot. 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.cc
diff --git a/content/browser/frame_host/navigation_request_info.cc b/content/browser/frame_host/navigation_request_info.cc
index 14b900b9aa4cc01b54d1b5eecea286bd44284446..550b61fca7cb755492e7e1ae614952ea57004d8f 100644
--- a/content/browser/frame_host/navigation_request_info.cc
+++ b/content/browser/frame_host/navigation_request_info.cc
@@ -13,6 +13,7 @@ NavigationRequestInfo::NavigationRequestInfo(
bool is_main_frame,
bool parent_is_main_frame,
int frame_tree_node_id,
+ int service_worker_provider_id,
scoped_refptr<ResourceRequestBody> request_body)
: common_params(common_params),
begin_params(begin_params),
@@ -20,6 +21,7 @@ NavigationRequestInfo::NavigationRequestInfo(
is_main_frame(is_main_frame),
parent_is_main_frame(parent_is_main_frame),
frame_tree_node_id(frame_tree_node_id),
+ service_worker_provider_id(service_worker_provider_id),
request_body(request_body) {
}

Powered by Google App Engine
This is Rietveld 408576698