Index: content/child/resource_dispatcher.h |
diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h |
index ad1c79d27cfaa18643169b2335e089410b36cec0..9f1f7c960c2faf4b8407c4fa5e470f78c011b844 100644 |
--- a/content/child/resource_dispatcher.h |
+++ b/content/child/resource_dispatcher.h |
@@ -32,11 +32,8 @@ namespace net { |
struct RedirectInfo; |
} |
-namespace webkit_glue { |
-class ResourceLoaderBridge; |
-} |
- |
namespace content { |
+class ResourceLoaderBridge; |
class RequestPeer; |
Avi (use Gerrit)
2014/09/02 22:34:36
alphabetize
tfarina
2014/09/05 01:07:25
Done.
|
class ResourceDispatcherDelegate; |
class ThreadedDataProvider; |
@@ -59,8 +56,7 @@ 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. Virtual for tests. |
- virtual webkit_glue::ResourceLoaderBridge* CreateBridge( |
- const RequestInfo& request_info); |
+ virtual ResourceLoaderBridge* CreateBridge(const RequestInfo& request_info); |
// Adds a request from the |pending_requests_| list, returning the new |
// requests' ID. |