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

Unified Diff: content/browser/service_worker/service_worker_controllee_request_handler.h

Issue 2038813003: Making ResourceRequestBody part of //content's public API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 4 years, 6 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/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_;

Powered by Google App Engine
This is Rietveld 408576698