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

Unified Diff: content/child/resource_dispatcher.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/child/resource_dispatcher.h
diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h
index 17c80e41603ae8280e88063464d818d77da959ca..11062c6fe4b114dc5055a5e0778b4f9fc88e9bc8 100644
--- a/content/child/resource_dispatcher.h
+++ b/content/child/resource_dispatcher.h
@@ -35,7 +35,7 @@ struct RedirectInfo;
namespace content {
class RequestPeer;
class ResourceDispatcherDelegate;
-class ResourceRequestBody;
+class ResourceRequestBodyImpl;
class ResourceSchedulingFilter;
struct ResourceResponseInfo;
struct RequestInfo;
@@ -67,14 +67,14 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
// interrupt this method. Errors are reported via the status field of the
// response parameter.
void StartSync(const RequestInfo& request_info,
- ResourceRequestBody* request_body,
+ ResourceRequestBodyImpl* request_body,
SyncLoadResponse* response);
// Call this method to initiate the request. If this method succeeds, then
// the peer's methods will be called asynchronously to report various events.
// Returns the request id.
virtual int StartAsync(const RequestInfo& request_info,
- ResourceRequestBody* request_body,
+ ResourceRequestBodyImpl* request_body,
std::unique_ptr<RequestPeer> peer);
// Removes a request from the |pending_requests_| list, returning true if the
@@ -224,7 +224,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
std::unique_ptr<ResourceRequest> CreateRequest(
const RequestInfo& request_info,
- ResourceRequestBody* request_body,
+ ResourceRequestBodyImpl* request_body,
GURL* frame_origin);
IPC::Sender* message_sender_;
« no previous file with comments | « content/browser/service_worker/service_worker_write_to_cache_job_unittest.cc ('k') | content/child/resource_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698