| Index: chrome/browser/favicon/favicon_service_factory.h
|
| diff --git a/chrome/browser/favicon/favicon_service_factory.h b/chrome/browser/favicon/favicon_service_factory.h
|
| index 674e7e94d61130377530cee0676e49e7584c380d..36157bbb4f1af1c16212d0529a20c152e59bedd4 100644
|
| --- a/chrome/browser/favicon/favicon_service_factory.h
|
| +++ b/chrome/browser/favicon/favicon_service_factory.h
|
| @@ -6,13 +6,13 @@
|
| #define CHROME_BROWSER_FAVICON_FAVICON_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"
|
|
|
| template <typename T> struct DefaultSingletonTraits;
|
|
|
| -class Profile;
|
| class FaviconService;
|
| +class Profile;
|
|
|
| // Singleton that owns all FaviconService and associates them with
|
| // Profiles.
|
| @@ -20,8 +20,7 @@ class FaviconServiceFactory : public BrowserContextKeyedServiceFactory {
|
| public:
|
| // |access| defines what the caller plans to do with the service. See
|
| // the ServiceAccessType definition in profile.h.
|
| - static FaviconService* GetForProfile(Profile* profile,
|
| - Profile::ServiceAccessType sat);
|
| + static FaviconService* GetForProfile(Profile* profile, ServiceAccessType sat);
|
|
|
| static FaviconServiceFactory* GetInstance();
|
|
|
|
|