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

Unified Diff: content/public/common/resource_response_info.cc

Issue 375513002: [ServiceWorker] Propagates ServiceWorker fetched response's URL and wasFetchedViaServiceWorker flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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/public/common/resource_response_info.cc
diff --git a/content/public/common/resource_response_info.cc b/content/public/common/resource_response_info.cc
index e827f3ea6fb576f0ca5c7c366787e6a2030f3d83..8e1f4decc424a249f57dc9302b8986e1a4d114d4 100644
--- a/content/public/common/resource_response_info.cc
+++ b/content/public/common/resource_response_info.cc
@@ -17,7 +17,8 @@ ResourceResponseInfo::ResourceResponseInfo()
was_npn_negotiated(false),
was_alternate_protocol_available(false),
connection_info(net::HttpResponseInfo::CONNECTION_INFO_UNKNOWN),
- was_fetched_via_proxy(false) {
+ was_fetched_via_proxy(false),
+ was_fetched_via_service_worker(false) {
}
ResourceResponseInfo::~ResourceResponseInfo() {

Powered by Google App Engine
This is Rietveld 408576698