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

Unified Diff: content/child/resource_dispatcher.h

Issue 1970693002: Use mojo for Chrome Loading, Part 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/child/resource_dispatcher.h
diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h
index c676e6956b91f22100e6c4af45aa41b8c533638a..84b22dc0d284816d52f3f14575dd7a5f9df47359 100644
--- a/content/child/resource_dispatcher.h
+++ b/content/child/resource_dispatcher.h
@@ -22,6 +22,7 @@
#include "base/single_thread_task_runner.h"
#include "base/time/time.h"
#include "content/common/content_export.h"
+#include "content/common/url_loader.mojom.h"
#include "content/public/common/resource_type.h"
#include "ipc/ipc_listener.h"
#include "ipc/ipc_sender.h"
@@ -69,14 +70,16 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
// response parameter.
void StartSync(const RequestInfo& request_info,
ResourceRequestBody* request_body,
- SyncLoadResponse* response);
+ SyncLoadResponse* response,
+ mojom::URLLoaderPtr url_loader);
// 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,
- std::unique_ptr<RequestPeer> peer);
+ std::unique_ptr<RequestPeer> peer,
+ mojom::URLLoaderPtr url_loader);
// Removes a request from the |pending_requests_| list, returning true if the
// request was found and removed.
@@ -120,6 +123,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
scoped_refptr<ResourceSchedulingFilter> resource_scheduling_filter);
private:
+ friend class BodyConsumer;
friend class ResourceDispatcherTest;
typedef std::deque<IPC::Message*> MessageQueue;
@@ -155,6 +159,8 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
linked_ptr<base::SharedMemory> buffer;
scoped_refptr<SharedMemoryReceivedDataFactory> received_data_factory;
std::unique_ptr<SiteIsolationResponseMetaData> site_isolation_metadata;
+ mojom::URLLoaderPtr url_loader;
+ std::unique_ptr<mojom::URLLoaderClient> url_loader_client;
int buffer_size;
};
using PendingRequestMap = std::map<int, std::unique_ptr<PendingRequestInfo>>;

Powered by Google App Engine
This is Rietveld 408576698