| 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 ab76c5c3278e6c4730121f3211aef892bf29cc67..4558d740f19c46fa76bb59911cf55be10f9a43f3 100644
|
| --- a/content/common/service_worker/service_worker_types.h
|
| +++ b/content/common/service_worker/service_worker_types.h
|
| @@ -143,35 +143,6 @@ struct CONTENT_EXPORT ServiceWorkerResponse {
|
| GURL stream_url;
|
| };
|
|
|
| -// Controls how requests are matched in the Cache API.
|
| -struct CONTENT_EXPORT ServiceWorkerCacheQueryParams {
|
| - ServiceWorkerCacheQueryParams();
|
| -
|
| - bool ignore_search;
|
| - bool ignore_method;
|
| - bool ignore_vary;
|
| - base::string16 cache_name;
|
| -};
|
| -
|
| -// The type of a single batch operation in the Cache API.
|
| -enum ServiceWorkerCacheOperationType {
|
| - SERVICE_WORKER_CACHE_OPERATION_TYPE_UNDEFINED,
|
| - SERVICE_WORKER_CACHE_OPERATION_TYPE_PUT,
|
| - SERVICE_WORKER_CACHE_OPERATION_TYPE_DELETE,
|
| - SERVICE_WORKER_CACHE_OPERATION_TYPE_LAST =
|
| - SERVICE_WORKER_CACHE_OPERATION_TYPE_DELETE
|
| -};
|
| -
|
| -// A single batch operation for the Cache API.
|
| -struct CONTENT_EXPORT ServiceWorkerBatchOperation {
|
| - ServiceWorkerBatchOperation();
|
| -
|
| - ServiceWorkerCacheOperationType operation_type;
|
| - ServiceWorkerFetchRequest request;
|
| - ServiceWorkerResponse response;
|
| - ServiceWorkerCacheQueryParams match_params;
|
| -};
|
| -
|
| // Represents initialization info for a WebServiceWorker object.
|
| struct CONTENT_EXPORT ServiceWorkerObjectInfo {
|
| ServiceWorkerObjectInfo();
|
|
|