| 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 05ef86420a57cd10a7f52f9a4974216ab00d510d..092192125edc3c4b5a690d6e590dfae6b027e219 100644
|
| --- a/content/common/service_worker/service_worker_types.cc
|
| +++ b/content/common/service_worker/service_worker_types.cc
|
| @@ -19,4 +19,19 @@ ServiceWorkerFetchRequest::ServiceWorkerFetchRequest(
|
|
|
| ServiceWorkerFetchRequest::~ServiceWorkerFetchRequest() {}
|
|
|
| +ServiceWorkerFetchResponse::ServiceWorkerFetchResponse() {}
|
| +
|
| +ServiceWorkerFetchResponse::ServiceWorkerFetchResponse(
|
| + int statusCode,
|
| + const std::string& statusText,
|
| + const std::string& method,
|
| + const std::map<std::string, std::string>& headers)
|
| + : statusCode(statusCode),
|
| + statusText(statusText),
|
| + method(method),
|
| + headers(headers) {
|
| +}
|
| +
|
| +ServiceWorkerFetchResponse::~ServiceWorkerFetchResponse() {}
|
| +
|
| } // namespace content
|
|
|