| 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 39a1f2fb5c85c239559cf13fcd4d04a4700fe738..cf4fc53123e1f466892a83834fc246d87d292bb0 100644
|
| --- a/chrome/browser/ui/webui/ntp/most_visited_handler.cc
|
| +++ b/chrome/browser/ui/webui/ntp/most_visited_handler.cc
|
| @@ -27,6 +27,7 @@
|
| #include "chrome/browser/ui/browser_finder.h"
|
| #include "chrome/browser/ui/tabs/tab_strip_model.h"
|
| #include "chrome/browser/ui/tabs/tab_strip_model_utils.h"
|
| +#include "chrome/browser/ui/webui/big_icon_source.h"
|
| #include "chrome/browser/ui/webui/fallback_icon_source.h"
|
| #include "chrome/browser/ui/webui/favicon_source.h"
|
| #include "chrome/browser/ui/webui/ntp/new_tab_ui.h"
|
| @@ -80,6 +81,9 @@ void MostVisitedHandler::RegisterMessages() {
|
| // Set up our sources for top-sites data.
|
| content::URLDataSource::Add(profile, new ThumbnailListSource(profile));
|
|
|
| + // Register chrome://big-icon as a data source for big icons.
|
| + content::URLDataSource::Add(profile, new BigIconSource(profile));
|
| +
|
| // Register chrome://fallback-icon as a data source for fallback icons.
|
| content::URLDataSource::Add(profile, new FallbackIconSource());
|
|
|
|
|