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

Unified Diff: content/child/request_extra_data.h

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.h
diff --git a/content/child/request_extra_data.h b/content/child/request_extra_data.h
index 3b716196e600f0bc4bbe900ed788147679bb411e..c7c8e7d60ec37d65a1176e3cb5115011f8883037 100644
--- a/content/child/request_extra_data.h
+++ b/content/child/request_extra_data.h
@@ -31,7 +31,8 @@ class CONTENT_EXPORT 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);
michaeln 2014/02/28 01:59:58 I'll have to chase down places where this ctor is
virtual ~RequestExtraData();
blink::WebPageVisibilityState visibility_state() const {
@@ -54,6 +55,9 @@ class CONTENT_EXPORT RequestExtraData
int transferred_request_request_id() const {
return transferred_request_request_id_;
}
+ int service_worker_provider_id() const {
+ return service_worker_provider_id_;
+ }
private:
blink::WebPageVisibilityState visibility_state_;
@@ -68,6 +72,7 @@ class CONTENT_EXPORT RequestExtraData
bool should_replace_current_entry_;
int transferred_request_child_id_;
int transferred_request_request_id_;
+ int service_worker_provider_id_;
DISALLOW_COPY_AND_ASSIGN(RequestExtraData);
};

Powered by Google App Engine
This is Rietveld 408576698