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

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

Issue 1157823003: Refactoring timing info for ServiceWorker controlled requests [2/3] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/resource_response.cc
diff --git a/content/public/common/resource_response.cc b/content/public/common/resource_response.cc
index e362f329a507a849ae9c1b0492d3fe6e59f28bb9..79471640740c43b6e225f2b7cf104f97ca822ff1 100644
--- a/content/public/common/resource_response.cc
+++ b/content/public/common/resource_response.cc
@@ -45,11 +45,8 @@ scoped_refptr<ResourceResponse> ResourceResponse::DeepCopy() const {
head.original_url_via_service_worker;
new_response->head.response_type_via_service_worker =
head.response_type_via_service_worker;
- new_response->head.service_worker_fetch_start =
- head.service_worker_fetch_start;
- new_response->head.service_worker_fetch_ready =
- head.service_worker_fetch_ready;
- new_response->head.service_worker_fetch_end = head.service_worker_fetch_end;
+ new_response->head.service_worker_start_time =
+ head.service_worker_start_time;
return new_response;
}
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698