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

Unified Diff: content/common/icon_messages.h

Issue 12780024: Split FaviconHelper in two: ImageLoadingHelper and FaviconHelper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed android build Created 7 years, 9 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/common/icon_messages.h
diff --git a/content/common/icon_messages.h b/content/common/icon_messages.h
index 9c466431991bce69c4531c90a21c586db11aa23e..482917e53ebd9d6811df8ee28b7ed3f6f0843b25 100644
--- a/content/common/icon_messages.h
+++ b/content/common/icon_messages.h
@@ -9,7 +9,6 @@
#include "ipc/ipc_message.h"
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_param_traits.h"
-#include "third_party/skia/include/core/SkBitmap.h"
#define IPC_MESSAGE_START IconMsgStart
@@ -22,24 +21,9 @@ IPC_STRUCT_TRAITS_END()
// Messages sent from the browser to the renderer.
-// Requests the renderer to download the specified favicon image, decode it,
-// and send the image data back via IconHostMsg_DidDownloadFavicon.
-IPC_MESSAGE_ROUTED3(IconMsg_DownloadFavicon,
- int /* identifier for the request */,
- GURL /* URL of the image */,
- int /* Preferred favicon size. Passed on to
- IconHostMsg_DidDownloadFavicon, unused otherwise */)
-
// Messages sent from the renderer to the browser.
// Notification that the urls for the favicon of a site has been determined.
IPC_MESSAGE_ROUTED2(IconHostMsg_UpdateFaviconURL,
int32 /* page_id */,
std::vector<content::FaviconURL> /* urls of the favicon */)
jam 2013/03/19 20:12:21 seems too much to have one messages file for one m
Dmitry Titov 2013/03/20 01:30:22 moved to view_messages, removed FaviconHelper clas
-
-IPC_MESSAGE_ROUTED4(IconHostMsg_DidDownloadFavicon,
- int /* Identifier of the request */,
- GURL /* URL of the image */,
- int /* Preferred icon size passed to
- IconMsg_DownloadFavicon */,
- std::vector<SkBitmap> /* image_data */)

Powered by Google App Engine
This is Rietveld 408576698