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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 11777009: Remove redundant |errored| member from IconHostMsg_DidDownloadFavicon (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | content/common/icon_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index a5103a512bdf7c4b0cb747e8812302528f1b113e..2c088ed104ecfbe685b150b317cb1fef3bffb0f8 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -2370,7 +2370,6 @@ void WebContentsImpl::OnBrowserPluginCreateGuest(
void WebContentsImpl::OnDidDownloadFavicon(
int id,
const GURL& image_url,
- bool errored,
int requested_size,
const std::vector<SkBitmap>& bitmaps) {
FaviconDownloadMap::iterator iter = favicon_download_map_.find(id);
@@ -2380,7 +2379,7 @@ void WebContentsImpl::OnDidDownloadFavicon(
return;
}
if (!iter->second.is_null()) {
- iter->second.Run(id, image_url, errored, requested_size, bitmaps);
+ iter->second.Run(id, image_url, requested_size, bitmaps);
}
favicon_download_map_.erase(id);
}
« no previous file with comments | « content/browser/web_contents/web_contents_impl.h ('k') | content/common/icon_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698