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

Side by Side Diff: content/public/common/resource_response.cc

Issue 2516353002: Introduce url_list to the Response scheme of CacheStorage. (Closed)
Patch Set: implicit conversion WebURL <-> GURL and WebVector <- vector Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/public/common/resource_response.h" 5 #include "content/public/common/resource_response.h"
6 6
7 #include "net/http/http_response_headers.h" 7 #include "net/http/http_response_headers.h"
8 8
9 namespace content { 9 namespace content {
10 10
(...skipping 25 matching lines...) Expand all
36 head.was_alternate_protocol_available; 36 head.was_alternate_protocol_available;
37 new_response->head.connection_info = head.connection_info; 37 new_response->head.connection_info = head.connection_info;
38 new_response->head.alpn_negotiated_protocol = head.alpn_negotiated_protocol; 38 new_response->head.alpn_negotiated_protocol = head.alpn_negotiated_protocol;
39 new_response->head.socket_address = head.socket_address; 39 new_response->head.socket_address = head.socket_address;
40 new_response->head.was_fetched_via_service_worker = 40 new_response->head.was_fetched_via_service_worker =
41 head.was_fetched_via_service_worker; 41 head.was_fetched_via_service_worker;
42 new_response->head.was_fetched_via_foreign_fetch = 42 new_response->head.was_fetched_via_foreign_fetch =
43 head.was_fetched_via_foreign_fetch; 43 head.was_fetched_via_foreign_fetch;
44 new_response->head.was_fallback_required_by_service_worker = 44 new_response->head.was_fallback_required_by_service_worker =
45 head.was_fallback_required_by_service_worker; 45 head.was_fallback_required_by_service_worker;
46 new_response->head.original_url_via_service_worker = 46 new_response->head.url_list_via_service_worker =
47 head.original_url_via_service_worker; 47 head.url_list_via_service_worker;
48 new_response->head.response_type_via_service_worker = 48 new_response->head.response_type_via_service_worker =
49 head.response_type_via_service_worker; 49 head.response_type_via_service_worker;
50 new_response->head.service_worker_start_time = 50 new_response->head.service_worker_start_time =
51 head.service_worker_start_time; 51 head.service_worker_start_time;
52 new_response->head.service_worker_ready_time = 52 new_response->head.service_worker_ready_time =
53 head.service_worker_ready_time; 53 head.service_worker_ready_time;
54 new_response->head.is_using_lofi = head.is_using_lofi; 54 new_response->head.is_using_lofi = head.is_using_lofi;
55 new_response->head.effective_connection_type = head.effective_connection_type; 55 new_response->head.effective_connection_type = head.effective_connection_type;
56 new_response->head.signed_certificate_timestamps = 56 new_response->head.signed_certificate_timestamps =
57 head.signed_certificate_timestamps; 57 head.signed_certificate_timestamps;
58 new_response->head.cors_exposed_header_names = head.cors_exposed_header_names; 58 new_response->head.cors_exposed_header_names = head.cors_exposed_header_names;
59 return new_response; 59 return new_response;
60 } 60 }
61 61
62 } // namespace content 62 } // namespace content
OLDNEW
« no previous file with comments | « content/common/service_worker/service_worker_types.cc ('k') | content/public/common/resource_response_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698