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

Unified Diff: content/common/icon_messages.h

Issue 11411180: move favicon download code from chrome/ into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix order Created 8 years 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 | « content/common/content_message_generator.h ('k') | content/content_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/icon_messages.h
diff --git a/chrome/common/icon_messages.h b/content/common/icon_messages.h
similarity index 88%
rename from chrome/common/icon_messages.h
rename to content/common/icon_messages.h
index 26e8f14d8b911a0e3a1eb1aff7abb6616830cda6..2cf1c15be6225ba90441b2a6509ffb91d22ca696 100644
--- a/chrome/common/icon_messages.h
+++ b/content/common/icon_messages.h
@@ -5,7 +5,7 @@
// Multiply-included message file, no traditional include guard.
#include <vector>
-#include "chrome/common/favicon_url.h"
+#include "content/public/common/favicon_url.h"
#include "ipc/ipc_message.h"
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_param_traits.h"
@@ -13,9 +13,9 @@
#define IPC_MESSAGE_START IconMsgStart
-IPC_ENUM_TRAITS(FaviconURL::IconType)
+IPC_ENUM_TRAITS(content::FaviconURL::IconType)
-IPC_STRUCT_TRAITS_BEGIN(FaviconURL)
+IPC_STRUCT_TRAITS_BEGIN(content::FaviconURL)
IPC_STRUCT_TRAITS_MEMBER(icon_url)
IPC_STRUCT_TRAITS_MEMBER(icon_type)
IPC_STRUCT_TRAITS_END()
@@ -35,7 +35,7 @@ IPC_MESSAGE_ROUTED3(IconMsg_DownloadFavicon,
// Notification that the urls for the favicon of a site has been determined.
IPC_MESSAGE_ROUTED2(IconHostMsg_UpdateFaviconURL,
int32 /* page_id */,
- std::vector<FaviconURL> /* urls of the favicon */)
+ std::vector<content::FaviconURL> /* urls of the favicon */)
IPC_MESSAGE_ROUTED5(IconHostMsg_DidDownloadFavicon,
int /* Identifier of the request */,
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698