| Index: content/common/service_worker/service_worker_types.cc
|
| diff --git a/content/common/service_worker/service_worker_types.cc b/content/common/service_worker/service_worker_types.cc
|
| index c544e56538c96d89e9a3aacec052f5eedf213d22..17419d572aa5e2c4c401cd653f11222a915a8a5e 100644
|
| --- a/content/common/service_worker/service_worker_types.cc
|
| +++ b/content/common/service_worker/service_worker_types.cc
|
| @@ -13,7 +13,7 @@ ServiceWorkerFetchRequest::ServiceWorkerFetchRequest()
|
| ServiceWorkerFetchRequest::ServiceWorkerFetchRequest(
|
| const GURL& url,
|
| const std::string& method,
|
| - const std::map<std::string, std::string>& headers,
|
| + const ServiceWorkerHeaderMap& headers,
|
| const GURL& referrer,
|
| bool is_reload)
|
| : url(url),
|
| @@ -32,7 +32,7 @@ ServiceWorkerResponse::ServiceWorkerResponse(
|
| const GURL& url,
|
| int status_code,
|
| const std::string& status_text,
|
| - const std::map<std::string, std::string>& headers,
|
| + const ServiceWorkerHeaderMap& headers,
|
| const std::string& blob_uuid)
|
| : url(url),
|
| status_code(status_code),
|
|
|