| Index: chrome/browser/history/history_service_factory.h
|
| diff --git a/chrome/browser/history/history_service_factory.h b/chrome/browser/history/history_service_factory.h
|
| index 06fcc2464833c8f6b15cbab64878a7469cd716a8..01044d6b0d8c5aba06a95d7db4c0d230a06b93d3 100644
|
| --- a/chrome/browser/history/history_service_factory.h
|
| +++ b/chrome/browser/history/history_service_factory.h
|
| @@ -6,20 +6,20 @@
|
| #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_FACTORY_H_
|
|
|
| #include "base/memory/singleton.h"
|
| -#include "chrome/browser/profiles/profile.h"
|
| #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
|
| +#include "components/keyed_service/core/service_access_type.h"
|
|
|
| class HistoryService;
|
| +class Profile;
|
|
|
| // Singleton that owns all HistoryService and associates them with
|
| // Profiles.
|
| class HistoryServiceFactory : public BrowserContextKeyedServiceFactory {
|
| public:
|
| - static HistoryService* GetForProfile(
|
| - Profile* profile, Profile::ServiceAccessType sat);
|
| + static HistoryService* GetForProfile(Profile* profile, ServiceAccessType sat);
|
|
|
| - static HistoryService* GetForProfileIfExists(
|
| - Profile* profile, Profile::ServiceAccessType sat);
|
| + static HistoryService* GetForProfileIfExists(Profile* profile,
|
| + ServiceAccessType sat);
|
|
|
| static HistoryService* GetForProfileWithoutCreating(
|
| Profile* profile);
|
|
|