| 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 8457b0ebe54fb412c3480b470b423ce613b18e55..b884692739305646ce1e053cfa2cf8d0821010da 100644
|
| --- a/content/common/service_worker/service_worker_types.cc
|
| +++ b/content/common/service_worker/service_worker_types.cc
|
| @@ -25,18 +25,24 @@ ServiceWorkerResponse::ServiceWorkerResponse(
|
| int status_code,
|
| const std::string& status_text,
|
| const std::string& method,
|
| - const std::map<std::string, std::string>& headers)
|
| + const std::map<std::string, std::string>& headers,
|
| + const std::string& blob_uuid)
|
| : status_code(status_code),
|
| status_text(status_text),
|
| - headers(headers) {}
|
| + headers(headers),
|
| + blob_uuid(blob_uuid) {
|
| +}
|
|
|
| ServiceWorkerResponse::ServiceWorkerResponse(
|
| int status_code,
|
| const std::string& status_text,
|
| - const std::map<std::string, std::string>& headers)
|
| + const std::map<std::string, std::string>& headers,
|
| + const std::string& blob_uuid)
|
| : status_code(status_code),
|
| status_text(status_text),
|
| - headers(headers) {}
|
| + headers(headers),
|
| + blob_uuid(blob_uuid) {
|
| +}
|
|
|
| ServiceWorkerResponse::~ServiceWorkerResponse() {}
|
|
|
|
|