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

Unified Diff: chrome/common/icon_messages.h

Issue 10828127: Use hi-resolution favicon variants if available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: daringfireball hackfix Created 8 years, 5 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: chrome/common/icon_messages.h
diff --git a/chrome/common/icon_messages.h b/chrome/common/icon_messages.h
index 5f04c94d2816508e044fcf839e29b533bf68a9c1..303af37ced10dd232a7fdb8463c29de7c3b007c4 100644
--- a/chrome/common/icon_messages.h
+++ b/chrome/common/icon_messages.h
@@ -27,9 +27,7 @@ IPC_STRUCT_TRAITS_END()
IPC_MESSAGE_ROUTED3(IconMsg_DownloadFavicon,
int /* identifier for the request */,
GURL /* URL of the image */,
- int /* Size of the image. Normally 0, but set if you have
- a preferred image size to request, such as when
- downloading the favicon */)
+ std::vector<int> /* XXX */)
// Messages sent from the renderer to the browser.
@@ -42,4 +40,4 @@ IPC_MESSAGE_ROUTED4(IconHostMsg_DidDownloadFavicon,
int /* Identifier of the request */,
GURL /* URL of the image */,
bool /* true if there was a network error */,
- SkBitmap /* image_data */)
+ std::vector<SkBitmap> /* image_data */)

Powered by Google App Engine
This is Rietveld 408576698