| Index: chrome/browser/instant/instant_service_factory.cc
|
| diff --git a/chrome/browser/instant/instant_service_factory.cc b/chrome/browser/instant/instant_service_factory.cc
|
| index f24cdf582187ad4faecca1f73b4856cda4392735..766ba51d20b586bfea48ba5c1faac5f1db09633e 100644
|
| --- a/chrome/browser/instant/instant_service_factory.cc
|
| +++ b/chrome/browser/instant/instant_service_factory.cc
|
| @@ -31,7 +31,11 @@ bool InstantServiceFactory::ServiceRedirectedInIncognito() const {
|
| return true;
|
| }
|
|
|
| +bool InstantServiceFactory::ServiceIsNULLWhileTesting() const {
|
| + return false;
|
| +}
|
| +
|
| ProfileKeyedService* InstantServiceFactory::BuildServiceInstanceFor(
|
| Profile* profile) const {
|
| - return new InstantService;
|
| + return new InstantService(profile);
|
| }
|
|
|