| Index: chrome/browser/ui/webui/ntp/suggestions_page_handler.cc
|
| diff --git a/chrome/browser/ui/webui/ntp/suggestions_page_handler.cc b/chrome/browser/ui/webui/ntp/suggestions_page_handler.cc
|
| index 4d606fe2d0c02ebc3797f0e909e93accedd24cf1..89c8e02c4c40cd742b1d395178b3eda3f5f9a984 100644
|
| --- a/chrome/browser/ui/webui/ntp/suggestions_page_handler.cc
|
| +++ b/chrome/browser/ui/webui/ntp/suggestions_page_handler.cc
|
| @@ -17,6 +17,7 @@
|
| #include "base/values.h"
|
| #include "chrome/browser/chrome_notification_types.h"
|
| #include "chrome/browser/history/top_sites.h"
|
| +#include "chrome/browser/history/top_sites_factory.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/webui/favicon_source.h"
|
| #include "chrome/browser/ui/webui/ntp/ntp_stats.h"
|
| @@ -69,7 +70,8 @@ void SuggestionsHandler::RegisterMessages() {
|
|
|
| // TODO(georgey) change the source of the web-sites to provide our data.
|
| // Initial commit uses top sites as a data source.
|
| - history::TopSites* top_sites = profile->GetTopSites();
|
| + scoped_refptr<history::TopSites> top_sites =
|
| + TopSitesFactory::GetForProfile(profile);
|
| if (top_sites) {
|
| // TopSites updates itself after a delay. This is especially noticable when
|
| // your profile is empty. Ask TopSites to update itself when we're about to
|
|
|