Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1144)

Unified Diff: content/common/service_worker/service_worker_types.h

Issue 293083002: Add a blob field to ServiceWorkerFetchResponse and read the blob (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix merge conflict Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b38e0f5c69e46e514c2953300a0c0c525f42c57a..8f49f9a5635f42a2d4f9466205cbf0d316a1c621 100644
--- a/content/common/service_worker/service_worker_types.h
+++ b/content/common/service_worker/service_worker_types.h
@@ -61,12 +61,14 @@ struct CONTENT_EXPORT ServiceWorkerResponse {
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);
~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.
« no previous file with comments | « content/common/service_worker/service_worker_messages.h ('k') | content/common/service_worker/service_worker_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698