Chromium Code Reviews| Index: chrome/browser/ui/webui/ntp/most_visited_handler.cc |
| diff --git a/chrome/browser/ui/webui/ntp/most_visited_handler.cc b/chrome/browser/ui/webui/ntp/most_visited_handler.cc |
| index 09be6313d80eadfeb5064832c68729f3e6abecbd..10bfbab143922171682449594c970a80b5f05185 100644 |
| --- a/chrome/browser/ui/webui/ntp/most_visited_handler.cc |
| +++ b/chrome/browser/ui/webui/ntp/most_visited_handler.cc |
| @@ -74,6 +74,10 @@ void MostVisitedHandler::RegisterMessages() { |
| ThumbnailSource* thumbnail_src = new ThumbnailSource(profile); |
| ChromeURLDataManager::AddDataSource(profile, thumbnail_src); |
| +#if defined(OS_ANDROID) |
| + ChromeURLDataManager::AddDataSource(profile, |
| + new FaviconSource(profile, FaviconSource::ANY)); |
| +#endif |
| ChromeURLDataManager::AddDataSource(profile, |
| new FaviconSource(profile, FaviconSource::FAVICON)); |
|
Evan Stade
2012/10/02 14:42:43
you need both of these on android?
newt (away)
2012/10/05 13:31:05
Yes. Added comments to explain. ANY is perhaps n
|