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

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

Issue 2954343005: Merge ResourceRequestBodyImpl and ResourceRequestBody. (Closed)
Patch Set: Remove comment Created 3 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 d193eee5cb334e7e7356c741e55fa46070b20b30..20ca7ee93fdc55a56cbf89de8e82e7f1ea2b0451 100644
--- a/content/browser/service_worker/service_worker_request_handler.h
+++ b/content/browser/service_worker/service_worker_request_handler.h
@@ -34,7 +34,7 @@ class BlobStorageContext;
namespace content {
class ResourceContext;
-class ResourceRequestBodyImpl;
+class ResourceRequestBody;
class ServiceWorkerContextCore;
class ServiceWorkerContextWrapper;
class ServiceWorkerNavigationHandleCore;
@@ -59,7 +59,7 @@ class CONTENT_EXPORT ServiceWorkerRequestHandler
RequestContextType request_context_type,
RequestContextFrameType frame_type,
bool is_parent_frame_secure,
- scoped_refptr<ResourceRequestBodyImpl> body,
+ scoped_refptr<ResourceRequestBody> body,
const base::Callback<WebContents*(void)>& web_contents_getter);
// PlzNavigate and --enable-network-service.
@@ -76,7 +76,7 @@ class CONTENT_EXPORT ServiceWorkerRequestHandler
RequestContextType request_context_type,
RequestContextFrameType frame_type,
bool is_parent_frame_secure,
- scoped_refptr<ResourceRequestBodyImpl> body,
+ scoped_refptr<ResourceRequestBody> body,
const base::Callback<WebContents*(void)>& web_contents_getter);
// Attaches a newly created handler if the given |request| needs to
@@ -98,7 +98,7 @@ class CONTENT_EXPORT ServiceWorkerRequestHandler
ResourceType resource_type,
RequestContextType request_context_type,
RequestContextFrameType frame_type,
- scoped_refptr<ResourceRequestBodyImpl> body);
+ scoped_refptr<ResourceRequestBody> 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