| Index: content/browser/service_worker/service_worker_url_request_job.h
|
| diff --git a/content/browser/service_worker/service_worker_url_request_job.h b/content/browser/service_worker/service_worker_url_request_job.h
|
| index 58ab863a47dbb9e3e580a7a3994fbc0dc5833c4c..54aa87c9114dcda0c21c87d0ca8fd0b201cac4f5 100644
|
| --- a/content/browser/service_worker/service_worker_url_request_job.h
|
| +++ b/content/browser/service_worker/service_worker_url_request_job.h
|
| @@ -43,7 +43,7 @@ class BlobStorageContext;
|
| namespace content {
|
|
|
| class ResourceContext;
|
| -class ResourceRequestBody;
|
| +class ResourceRequestBodyImpl;
|
| class ServiceWorkerContextCore;
|
| class ServiceWorkerFetchDispatcher;
|
| class ServiceWorkerProviderHost;
|
| @@ -95,7 +95,7 @@ class CONTENT_EXPORT ServiceWorkerURLRequestJob
|
| ResourceType resource_type,
|
| RequestContextType request_context_type,
|
| RequestContextFrameType frame_type,
|
| - scoped_refptr<ResourceRequestBody> body,
|
| + scoped_refptr<ResourceRequestBodyImpl> body,
|
| ServiceWorkerFetchType fetch_type,
|
| Delegate* delegate);
|
|
|
| @@ -265,7 +265,7 @@ class CONTENT_EXPORT ServiceWorkerURLRequestJob
|
| bool fall_back_required_;
|
| // ResourceRequestBody has a collection of BlobDataHandles attached to it
|
| // using the userdata mechanism. So we have to keep it not to free the blobs.
|
| - scoped_refptr<ResourceRequestBody> body_;
|
| + scoped_refptr<ResourceRequestBodyImpl> body_;
|
| std::unique_ptr<storage::BlobDataHandle> request_body_blob_data_handle_;
|
| scoped_refptr<ServiceWorkerVersion> streaming_version_;
|
| ServiceWorkerFetchType fetch_type_;
|
|
|