| 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 4908460597f09db972099016bbb1f9e588f632df..8a7e669c3925c1480c5e31a2c3a1b13a01379dd7 100644
|
| --- a/content/common/service_worker/service_worker_types.h
|
| +++ b/content/common/service_worker/service_worker_types.h
|
| @@ -42,8 +42,6 @@ enum ServiceWorkerFetchEventResult {
|
| };
|
|
|
| // To dispatch fetch request from browser to child process.
|
| -// TODO(kinuko): This struct will definitely need more fields and
|
| -// we'll probably want to have response struct/class too.
|
| struct CONTENT_EXPORT ServiceWorkerFetchRequest {
|
| ServiceWorkerFetchRequest();
|
| ServiceWorkerFetchRequest(const GURL& url,
|
| @@ -56,6 +54,8 @@ struct CONTENT_EXPORT ServiceWorkerFetchRequest {
|
| GURL url;
|
| std::string method;
|
| std::map<std::string, std::string> headers;
|
| + std::string blob_uuid;
|
| + uint64 blob_size;
|
| GURL referrer;
|
| bool is_reload;
|
| };
|
|
|