OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message file, no traditional include guard. | 5 // Multiply-included message file, no traditional include guard. |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "content/public/common/favicon_url.h" | 8 #include "content/public/common/favicon_url.h" |
9 #include "ipc/ipc_message.h" | 9 #include "ipc/ipc_message.h" |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 int /* Preferred favicon size. Passed on to | 30 int /* Preferred favicon size. Passed on to |
31 IconHostMsg_DidDownloadFavicon, unused otherwise */) | 31 IconHostMsg_DidDownloadFavicon, unused otherwise */) |
32 | 32 |
33 // Messages sent from the renderer to the browser. | 33 // Messages sent from the renderer to the browser. |
34 | 34 |
35 // Notification that the urls for the favicon of a site has been determined. | 35 // Notification that the urls for the favicon of a site has been determined. |
36 IPC_MESSAGE_ROUTED2(IconHostMsg_UpdateFaviconURL, | 36 IPC_MESSAGE_ROUTED2(IconHostMsg_UpdateFaviconURL, |
37 int32 /* page_id */, | 37 int32 /* page_id */, |
38 std::vector<content::FaviconURL> /* urls of the favicon */) | 38 std::vector<content::FaviconURL> /* urls of the favicon */) |
39 | 39 |
40 IPC_MESSAGE_ROUTED5(IconHostMsg_DidDownloadFavicon, | 40 IPC_MESSAGE_ROUTED4(IconHostMsg_DidDownloadFavicon, |
41 int /* Identifier of the request */, | 41 int /* Identifier of the request */, |
42 GURL /* URL of the image */, | 42 GURL /* URL of the image */, |
43 bool /* true if there was a network error */, | |
44 int /* Preferred icon size passed to | 43 int /* Preferred icon size passed to |
45 IconMsg_DownloadFavicon */, | 44 IconMsg_DownloadFavicon */, |
46 std::vector<SkBitmap> /* image_data */) | 45 std::vector<SkBitmap> /* image_data */) |
OLD | NEW |