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

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

Issue 2008613002: ABANDONED CL: Making ResourceRequestBody part of //content's public API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@post-data-my-stuff
Patch Set: Rebasing... Created 4 years, 7 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/foreign_fetch_request_handler.h
diff --git a/content/browser/service_worker/foreign_fetch_request_handler.h b/content/browser/service_worker/foreign_fetch_request_handler.h
index 2ecc04a6aad8b50bdc6b816fcf0bf68ab1caf3e5..5e1089a5ac2f985ba4cd7da76506fb3b247c0fd7 100644
--- a/content/browser/service_worker/foreign_fetch_request_handler.h
+++ b/content/browser/service_worker/foreign_fetch_request_handler.h
@@ -31,7 +31,7 @@ class BlobStorageContext;
namespace content {
class ResourceContext;
-class ResourceRequestBody;
+class ResourceRequestBodyImpl;
class ServiceWorkerContextCore;
class ServiceWorkerContextWrapper;
class ServiceWorkerProviderHost;
@@ -61,7 +61,7 @@ class CONTENT_EXPORT ForeignFetchRequestHandler
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.
@@ -88,7 +88,7 @@ class CONTENT_EXPORT ForeignFetchRequestHandler
ResourceType resource_type,
RequestContextType request_context_type,
RequestContextFrameType frame_type,
- scoped_refptr<ResourceRequestBody> body);
+ scoped_refptr<ResourceRequestBodyImpl> body);
// Called when a ServiceWorkerRegistration has (or hasn't) been found for the
// request being handled.
@@ -114,7 +114,7 @@ class CONTENT_EXPORT ForeignFetchRequestHandler
FetchRedirectMode redirect_mode_;
RequestContextType request_context_type_;
RequestContextFrameType frame_type_;
- scoped_refptr<ResourceRequestBody> body_;
+ scoped_refptr<ResourceRequestBodyImpl> body_;
base::WeakPtr<ServiceWorkerURLRequestJob> job_;
scoped_refptr<ServiceWorkerVersion> target_worker_;

Powered by Google App Engine
This is Rietveld 408576698