| Index: chrome/browser/search/instant_service.cc
|
| diff --git a/chrome/browser/search/instant_service.cc b/chrome/browser/search/instant_service.cc
|
| index 00e34b5b9d8b6971eb820f30b90f4befdb8a85fc..3ae68b5488ee5a1527a22ffe77931b3501f884f1 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"
|
| @@ -70,6 +71,7 @@ InstantService::InstantService(Profile* profile)
|
| content::URLDataSource::Add(profile, new FaviconSource(
|
| profile, FaviconSource::FAVICON));
|
| content::URLDataSource::Add(profile, new LocalOmniboxPopupSource());
|
| + content::URLDataSource::Add(profile, new LocalNTPSource());
|
| }
|
|
|
| InstantService::~InstantService() {
|
|
|