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

Unified Diff: chrome/browser/extensions/favicon_downloader.cc

Issue 2918903002: Move IconURLs method from WebFrame to WebLocalFrame (Closed)
Patch Set: s/kFavIcon/kFavicon/g (as suggested in CR feedback from pkotwicz@). Created 3 years, 6 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 | « android_webview/browser/icon_helper.cc ('k') | chrome/browser/extensions/favicon_downloader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/favicon_downloader.cc
diff --git a/chrome/browser/extensions/favicon_downloader.cc b/chrome/browser/extensions/favicon_downloader.cc
index fa6f2ad0e63cbbabaefa22e602302aefaed2c7dc..c1dc3ebe4ec58c84528fc56cf62a47ebb8451974 100644
--- a/chrome/browser/extensions/favicon_downloader.cc
+++ b/chrome/browser/extensions/favicon_downloader.cc
@@ -73,7 +73,7 @@ void FaviconDownloader::FetchIcons(
for (std::vector<content::FaviconURL>::const_iterator it =
favicon_urls.begin();
it != favicon_urls.end(); ++it) {
- if (it->icon_type != content::FaviconURL::INVALID_ICON)
+ if (it->icon_type != content::FaviconURL::IconType::kInvalid)
urls.push_back(it->icon_url);
}
FetchIcons(urls);
« no previous file with comments | « android_webview/browser/icon_helper.cc ('k') | chrome/browser/extensions/favicon_downloader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698