Index: content/common/service_worker/service_worker_types.h |
diff --git a/content/common/service_worker/service_worker_types.h b/content/common/service_worker/service_worker_types.h |
index 73bccbc5a88a37f73b820e6b5ec982f31cdfdbd1..df02376a174c022745407f63f53081e766751c8e 100644 |
--- a/content/common/service_worker/service_worker_types.h |
+++ b/content/common/service_worker/service_worker_types.h |
@@ -63,15 +63,18 @@ struct CONTENT_EXPORT 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); |
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); |
~ServiceWorkerResponse(); |
int status_code; |
std::string status_text; |
std::map<std::string, std::string> headers; |
+ std::string blob_uuid; |
}; |
// Represents initialization info for a WebServiceWorker object. |