| Index: chrome/browser/search/instant_service.cc
|
| diff --git a/chrome/browser/search/instant_service.cc b/chrome/browser/search/instant_service.cc
|
| index 1d16613bd3c965594b2ba664dab6d5f95efd767d..0f5d7bef93dbb3a7ab8e6fec7b81dbf093724afb 100644
|
| --- a/chrome/browser/search/instant_service.cc
|
| +++ b/chrome/browser/search/instant_service.cc
|
| @@ -9,6 +9,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/search/instant_io_context.h"
|
| #include "chrome/browser/search/instant_service_factory.h"
|
| +#include "chrome/browser/search/local_ntp_source.h"
|
| #include "chrome/browser/search/local_omnibox_popup_source.h"
|
| #include "chrome/browser/ui/webui/favicon_source.h"
|
| #include "chrome/browser/ui/webui/ntp/thumbnail_source.h"
|
| @@ -74,6 +75,7 @@ InstantService::InstantService(Profile* profile)
|
| profile, FaviconSource::FAVICON));
|
| */
|
| content::URLDataSource::Add(profile, new LocalOmniboxPopupSource());
|
| + content::URLDataSource::Add(profile, new LocalNTPSource());
|
| }
|
|
|
| InstantService::~InstantService() {
|
|
|