diff options
author | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 05:48:53 +0000 |
---|---|---|
committer | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-10 05:48:53 +0000 |
commit | 8383aa9670f4a9faf051c7612b6d1ea3ba7594fd (patch) | |
tree | bb4e5bfb0136507238a7bcb63e7986f564c81c84 /content/common | |
parent | 74aaaf819b9d47b888409b7b7491d4ce37992b64 (diff) | |
download | chromium_src-8383aa9670f4a9faf051c7612b6d1ea3ba7594fd.zip chromium_src-8383aa9670f4a9faf051c7612b6d1ea3ba7594fd.tar.gz chromium_src-8383aa9670f4a9faf051c7612b6d1ea3ba7594fd.tar.bz2 |
Remove redundant |errored| member from IconHostMsg_DidDownloadFavicon
Bug=None
Test=None
R=caitkp, sky
TBR=jam
Review URL: https://chromiumcodereview.appspot.com/11777009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/icon_messages.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/content/common/icon_messages.h b/content/common/icon_messages.h index 2cf1c15..9c46643 100644 --- a/content/common/icon_messages.h +++ b/content/common/icon_messages.h @@ -37,10 +37,9 @@ IPC_MESSAGE_ROUTED2(IconHostMsg_UpdateFaviconURL, int32 /* page_id */, std::vector<content::FaviconURL> /* urls of the favicon */) -IPC_MESSAGE_ROUTED5(IconHostMsg_DidDownloadFavicon, +IPC_MESSAGE_ROUTED4(IconHostMsg_DidDownloadFavicon, int /* Identifier of the request */, GURL /* URL of the image */, - bool /* true if there was a network error */, int /* Preferred icon size passed to IconMsg_DownloadFavicon */, std::vector<SkBitmap> /* image_data */) |