| 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 d4d863e68ed303e93ac27a9efa5a57f746acbdbf..1f0f3e6247583b7d777738d3ab20578e8251ff75 100644
|
| --- a/content/common/service_worker/service_worker_types.cc
|
| +++ b/content/common/service_worker/service_worker_types.cc
|
| @@ -19,9 +19,9 @@ ServiceWorkerFetchRequest::ServiceWorkerFetchRequest(
|
|
|
| ServiceWorkerFetchRequest::~ServiceWorkerFetchRequest() {}
|
|
|
| -ServiceWorkerFetchResponse::ServiceWorkerFetchResponse() {}
|
| +ServiceWorkerResponse::ServiceWorkerResponse() : status_code(0) {}
|
|
|
| -ServiceWorkerFetchResponse::ServiceWorkerFetchResponse(
|
| +ServiceWorkerResponse::ServiceWorkerResponse(
|
| int status_code,
|
| const std::string& status_text,
|
| const std::string& method,
|
| @@ -29,9 +29,8 @@ ServiceWorkerFetchResponse::ServiceWorkerFetchResponse(
|
| : status_code(status_code),
|
| status_text(status_text),
|
| method(method),
|
| - headers(headers) {
|
| -}
|
| + headers(headers) {}
|
|
|
| -ServiceWorkerFetchResponse::~ServiceWorkerFetchResponse() {}
|
| +ServiceWorkerResponse::~ServiceWorkerResponse() {}
|
|
|
| } // namespace content
|
|
|