| OLD | NEW |
| 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 29 matching lines...) Expand all Loading... |
| 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_fallback_required_by_service_worker = | 42 new_response->head.was_fallback_required_by_service_worker = |
| 43 head.was_fallback_required_by_service_worker; | 43 head.was_fallback_required_by_service_worker; |
| 44 new_response->head.original_url_via_service_worker = | 44 new_response->head.original_url_via_service_worker = |
| 45 head.original_url_via_service_worker; | 45 head.original_url_via_service_worker; |
| 46 new_response->head.response_type_via_service_worker = | 46 new_response->head.response_type_via_service_worker = |
| 47 head.response_type_via_service_worker; | 47 head.response_type_via_service_worker; |
| 48 new_response->head.service_worker_start_time = | 48 new_response->head.service_worker_start_time = |
| 49 head.service_worker_start_time; | 49 head.service_worker_start_time; |
| 50 new_response->head.service_worker_ready_time = |
| 51 head.service_worker_ready_time; |
| 50 return new_response; | 52 return new_response; |
| 51 } | 53 } |
| 52 | 54 |
| 53 } // namespace content | 55 } // namespace content |
| OLD | NEW |