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 343c5244e1d7e535a8cc26d998b1394f1a143745..d527bc56ace7b3eecbb82858d2956eb71284afa6 100644 |
--- a/content/common/service_worker/service_worker_types.cc |
+++ b/content/common/service_worker/service_worker_types.cc |
@@ -25,11 +25,13 @@ 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), |
method(method), |
- headers(headers) {} |
+ headers(headers), |
+ blob_uuid(blob_uuid) {} |
ServiceWorkerResponse::~ServiceWorkerResponse() {} |