| Index: content/browser/service_worker/service_worker_controllee_request_handler.h
|
| diff --git a/content/browser/service_worker/service_worker_controllee_request_handler.h b/content/browser/service_worker/service_worker_controllee_request_handler.h
|
| index 1ab9f0d9e923c9b68b2fc2ccd75adc6207a3cb7c..8da2a56a51efba848de2d4a86ed10aed84dee704 100644
|
| --- a/content/browser/service_worker/service_worker_controllee_request_handler.h
|
| +++ b/content/browser/service_worker/service_worker_controllee_request_handler.h
|
| @@ -28,7 +28,7 @@ class URLRequest;
|
|
|
| namespace content {
|
|
|
| -class ResourceRequestBody;
|
| +class ResourceRequestBodyImpl;
|
| class ServiceWorkerRegistration;
|
| class ServiceWorkerVersion;
|
|
|
| @@ -48,7 +48,7 @@ class CONTENT_EXPORT ServiceWorkerControlleeRequestHandler
|
| ResourceType resource_type,
|
| RequestContextType request_context_type,
|
| RequestContextFrameType frame_type,
|
| - scoped_refptr<ResourceRequestBody> body);
|
| + scoped_refptr<ResourceRequestBodyImpl> body);
|
| ~ServiceWorkerControlleeRequestHandler() override;
|
|
|
| // Called via custom URLRequestJobFactory.
|
| @@ -107,7 +107,7 @@ class CONTENT_EXPORT ServiceWorkerControlleeRequestHandler
|
| FetchRedirectMode redirect_mode_;
|
| RequestContextType request_context_type_;
|
| RequestContextFrameType frame_type_;
|
| - scoped_refptr<ResourceRequestBody> body_;
|
| + scoped_refptr<ResourceRequestBodyImpl> body_;
|
| ResourceContext* resource_context_;
|
| GURL stripped_url_;
|
| bool force_update_started_;
|
|
|