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

Unified Diff: content/child/resource_dispatcher.h

Issue 186193005: Move resource_loader_bridge to content/public/child/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 4943765b70161fe972007ccd9ecf9dc8627860b6..2c8a0a98036243b2db307f4599aa7351b8f99cca 100644
--- a/content/child/resource_dispatcher.h
+++ b/content/child/resource_dispatcher.h
@@ -16,9 +16,9 @@
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "content/common/content_export.h"
+#include "content/public/child/resource_loader_bridge.h"
#include "ipc/ipc_listener.h"
#include "ipc/ipc_sender.h"
-#include "webkit/child/resource_loader_bridge.h"
struct ResourceMsg_RequestCompleteData;
@@ -40,12 +40,12 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
// Creates a ResourceLoaderBridge for this type of dispatcher, this is so
// this can be tested regardless of the ResourceLoaderBridge::Create
// implementation.
- webkit_glue::ResourceLoaderBridge* CreateBridge(
- const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info);
+ ResourceLoaderBridge* CreateBridge(
+ const ResourceLoaderBridge::RequestInfo& request_info);
// Adds a request from the pending_requests_ list, returning the new
// requests' ID
- int AddPendingRequest(webkit_glue::ResourceLoaderBridge::Peer* callback,
+ int AddPendingRequest(ResourceLoaderBridge::Peer* callback,
ResourceType::Type resource_type,
int origin_pid,
const GURL& frame_origin,
@@ -87,7 +87,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
struct PendingRequestInfo {
PendingRequestInfo();
- PendingRequestInfo(webkit_glue::ResourceLoaderBridge::Peer* peer,
+ PendingRequestInfo(ResourceLoaderBridge::Peer* peer,
ResourceType::Type resource_type,
int origin_pid,
const GURL& frame_origin,
@@ -95,7 +95,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
~PendingRequestInfo();
- webkit_glue::ResourceLoaderBridge::Peer* peer;
+ ResourceLoaderBridge::Peer* peer;
ResourceType::Type resource_type;
// The PID of the original process which issued this request. This gets
// non-zero only for a request proxied by another renderer, particularly

Powered by Google App Engine
This is Rietveld 408576698