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

Unified Diff: content/browser/service_worker/service_worker_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_request_handler.h
diff --git a/content/browser/service_worker/service_worker_request_handler.h b/content/browser/service_worker/service_worker_request_handler.h
index e5bba5585c6e05319c5e48bd44f88ce0320612ed..f3e06502b246d4d7df012684308a70d846f6e70a 100644
--- a/content/browser/service_worker/service_worker_request_handler.h
+++ b/content/browser/service_worker/service_worker_request_handler.h
@@ -33,7 +33,7 @@ namespace content {
class ResourceContext;
class ResourceMessageFilter;
-class ResourceRequestBody;
+class ResourceRequestBodyImpl;
class ServiceWorkerContextCore;
class ServiceWorkerContextWrapper;
class ServiceWorkerNavigationHandleCore;
@@ -55,7 +55,7 @@ class CONTENT_EXPORT ServiceWorkerRequestHandler
ResourceType resource_type,
RequestContextType request_context_type,
RequestContextFrameType frame_type,
- scoped_refptr<ResourceRequestBody> body);
+ scoped_refptr<ResourceRequestBodyImpl> body);
// Attaches a newly created handler if the given |request| needs to
// be handled by ServiceWorker.
@@ -76,7 +76,7 @@ class CONTENT_EXPORT ServiceWorkerRequestHandler
ResourceType resource_type,
RequestContextType request_context_type,
RequestContextFrameType frame_type,
- scoped_refptr<ResourceRequestBody> body);
+ scoped_refptr<ResourceRequestBodyImpl> body);
// Returns the handler attached to |request|. This may return NULL
// if no handler is attached.

Powered by Google App Engine
This is Rietveld 408576698