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

Unified Diff: chrome/renderer/extensions/extension_localization_peer.h

Issue 293353007: Move resource_response_info from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « no previous file | chrome/renderer/extensions/extension_localization_peer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/extension_localization_peer.h
diff --git a/chrome/renderer/extensions/extension_localization_peer.h b/chrome/renderer/extensions/extension_localization_peer.h
index 329b11fb7fb0bad7e930e0cd6c35088e75e1eb6f..4d6c056c7e0a1b1b99b99a6ac77556497dba2abd 100644
--- a/chrome/renderer/extensions/extension_localization_peer.h
+++ b/chrome/renderer/extensions/extension_localization_peer.h
@@ -8,7 +8,7 @@
#include <string>
#include "content/public/child/request_peer.h"
-#include "webkit/common/resource_response_info.h"
+#include "content/public/common/resource_response_info.h"
namespace IPC {
class Sender;
@@ -36,9 +36,9 @@ class ExtensionLocalizationPeer : public content::RequestPeer {
virtual bool OnReceivedRedirect(
const GURL& new_url,
const GURL& new_first_party_for_cookies,
- const webkit_glue::ResourceResponseInfo& info) OVERRIDE;
+ const content::ResourceResponseInfo& info) OVERRIDE;
virtual void OnReceivedResponse(
- const webkit_glue::ResourceResponseInfo& info) OVERRIDE;
+ const content::ResourceResponseInfo& info) OVERRIDE;
virtual void OnDownloadedData(int len, int encoded_data_length) OVERRIDE {}
virtual void OnReceivedData(const char* data,
int data_length,
@@ -66,7 +66,7 @@ class ExtensionLocalizationPeer : public content::RequestPeer {
content::RequestPeer* original_peer_;
// We just pass though the response info. This holds the copy of the original.
- webkit_glue::ResourceResponseInfo response_info_;
+ content::ResourceResponseInfo response_info_;
// Sends ExtensionHostMsg_GetMessageBundle message to the browser to fetch
// message catalog.
« no previous file with comments | « no previous file | chrome/renderer/extensions/extension_localization_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698