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

Unified Diff: content/child/request_extra_data.cc

Issue 183993004: Tease apart ServiceWorkerNetworkProvider from other stuff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
Index: content/child/request_extra_data.cc
diff --git a/content/child/request_extra_data.cc b/content/child/request_extra_data.cc
index 54f4b9d2f897f3799e54056f15352bb2661c6751..8864dd323720d05c8775f56422b0feef94a55ebb 100644
--- a/content/child/request_extra_data.cc
+++ b/content/child/request_extra_data.cc
@@ -22,7 +22,8 @@ RequestExtraData::RequestExtraData(
PageTransition transition_type,
bool should_replace_current_entry,
int transferred_request_child_id,
- int transferred_request_request_id)
+ int transferred_request_request_id,
+ int service_worker_provider_id)
: webkit_glue::WebURLRequestExtraDataImpl(custom_user_agent,
was_after_preconnect_request),
visibility_state_(visibility_state),
@@ -36,7 +37,8 @@ RequestExtraData::RequestExtraData(
transition_type_(transition_type),
should_replace_current_entry_(should_replace_current_entry),
transferred_request_child_id_(transferred_request_child_id),
- transferred_request_request_id_(transferred_request_request_id) {
+ transferred_request_request_id_(transferred_request_request_id),
+ service_worker_provider_id_(service_worker_provider_id) {
}
RequestExtraData::~RequestExtraData() {

Powered by Google App Engine
This is Rietveld 408576698