Index: content/public/child/request_peer.h |
diff --git a/content/public/child/request_peer.h b/content/public/child/request_peer.h |
index 74148302529b288bcb492ea5a750d248b527df36..93143c5b4a8fcba45e00995df35c00ef523bf45f 100644 |
--- a/content/public/child/request_peer.h |
+++ b/content/public/child/request_peer.h |
@@ -16,12 +16,10 @@ namespace base { |
class TimeTicks; |
} |
-namespace webkit_glue { |
-struct ResourceResponseInfo; |
-} |
- |
namespace content { |
+struct ResourceResponseInfo; |
+ |
// This is implemented by our custom resource loader within content. The Peer |
// and it's bridge should have identical lifetimes as they represent each end of |
// a communication channel. |
@@ -40,15 +38,13 @@ class CONTENT_EXPORT RequestPeer { |
// information about the redirect, and new_url is the URL that will be loaded |
// if this method returns true. new_first_party_for_cookies is the new |
// first-party URL for cookies should that have changed. |
- virtual bool OnReceivedRedirect( |
- const GURL& new_url, |
- const GURL& new_first_party_for_cookies, |
- const webkit_glue::ResourceResponseInfo& info) = 0; |
+ virtual bool OnReceivedRedirect(const GURL& new_url, |
+ const GURL& new_first_party_for_cookies, |
+ const ResourceResponseInfo& info) = 0; |
// Called when response headers are available (after all redirects have |
// been followed). |
- virtual void OnReceivedResponse( |
- const webkit_glue::ResourceResponseInfo& info) = 0; |
+ virtual void OnReceivedResponse(const ResourceResponseInfo& info) = 0; |
// Called when a chunk of response data is downloaded. This method may be |
// called multiple times or not at all if an error occurs. This method is |