| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_WIN_JUMPLIST_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_WIN_JUMPLIST_FACTORY_H_ |
| 6 #define CHROME_BROWSER_WIN_JUMPLIST_FACTORY_H_ | 6 #define CHROME_BROWSER_WIN_JUMPLIST_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 9 #include "chrome/browser/win/jumplist.h" |
| 10 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv
ice_factory.h" |
| 10 | 11 |
| 11 class Profile; | 12 class JumpListFactory : public RefcountedBrowserContextKeyedServiceFactory { |
| 12 class JumpList; | |
| 13 | |
| 14 class JumpListFactory : public BrowserContextKeyedServiceFactory { | |
| 15 public: | 13 public: |
| 16 static JumpList* GetForProfile(Profile* profile); | 14 static scoped_refptr<JumpList> GetForProfile(Profile* profile); |
| 17 | 15 |
| 18 static JumpListFactory* GetInstance(); | 16 static JumpListFactory* GetInstance(); |
| 19 | 17 |
| 20 private: | 18 private: |
| 21 friend struct base::DefaultSingletonTraits<JumpListFactory>; | 19 friend struct base::DefaultSingletonTraits<JumpListFactory>; |
| 22 JumpListFactory(); | 20 JumpListFactory(); |
| 23 ~JumpListFactory() override; | 21 ~JumpListFactory() override; |
| 24 | 22 |
| 25 // BrowserContextKeyedServiceFactory: | 23 // BrowserContextKeyedServiceFactory: |
| 26 KeyedService* BuildServiceInstanceFor( | 24 scoped_refptr<RefcountedKeyedService> BuildServiceInstanceFor( |
| 27 content::BrowserContext* context) const override; | 25 content::BrowserContext* context) const override; |
| 28 }; | 26 }; |
| 29 | 27 |
| 30 #endif // CHROME_BROWSER_WIN_JUMPLIST_FACTORY_H_ | 28 #endif // CHROME_BROWSER_WIN_JUMPLIST_FACTORY_H_ |
| OLD | NEW |