diff options
Diffstat (limited to 'chrome/browser/search')
-rw-r--r-- | chrome/browser/search/instant_service.h | 2 | ||||
-rw-r--r-- | chrome/browser/search/instant_service_factory.cc | 2 | ||||
-rw-r--r-- | chrome/browser/search/instant_service_factory.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/search/instant_service.h b/chrome/browser/search/instant_service.h index 14738fc..a3d5fb4 100644 --- a/chrome/browser/search/instant_service.h +++ b/chrome/browser/search/instant_service.h @@ -12,8 +12,8 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/memory/ref_counted.h" -#include "chrome/browser/profiles/profile_keyed_service.h" #include "chrome/common/instant_restricted_id_cache.h" +#include "components/browser_context_keyed_service/browser_context_keyed_service.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" diff --git a/chrome/browser/search/instant_service_factory.cc b/chrome/browser/search/instant_service_factory.cc index 0b1b4fb..f4b6daa 100644 --- a/chrome/browser/search/instant_service_factory.cc +++ b/chrome/browser/search/instant_service_factory.cc @@ -6,8 +6,8 @@ #include "chrome/browser/profiles/incognito_helpers.h" #include "chrome/browser/profiles/profile.h" -#include "chrome/browser/profiles/profile_dependency_manager.h" #include "chrome/browser/search/instant_service.h" +#include "components/browser_context_keyed_service/browser_context_dependency_manager.h" // static InstantService* InstantServiceFactory::GetForProfile(Profile* profile) { diff --git a/chrome/browser/search/instant_service_factory.h b/chrome/browser/search/instant_service_factory.h index 3be9347..0c31f05 100644 --- a/chrome/browser/search/instant_service_factory.h +++ b/chrome/browser/search/instant_service_factory.h @@ -8,7 +8,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/memory/singleton.h" -#include "chrome/browser/profiles/profile_keyed_service_factory.h" +#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h" class InstantService; class Profile; |