| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 IOS_CHROME_BROWSER_HISTORY_TOP_SITES_FACTORY_H_ | 5 #ifndef IOS_CHROME_BROWSER_HISTORY_TOP_SITES_FACTORY_H_ |
| 6 #define IOS_CHROME_BROWSER_HISTORY_TOP_SITES_FACTORY_H_ | 6 #define IOS_CHROME_BROWSER_HISTORY_TOP_SITES_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "components/keyed_service/ios/refcounted_browser_state_keyed_service_fa
ctory.h" | 10 #include "components/keyed_service/ios/refcounted_browser_state_keyed_service_fa
ctory.h" |
| 11 | 11 |
| 12 template <typename T> | 12 template <typename T> |
| 13 struct DefaultSingletonTraits; | 13 struct base::DefaultSingletonTraits; |
| 14 | 14 |
| 15 namespace history { | 15 namespace history { |
| 16 class TopSites; | 16 class TopSites; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace ios { | 19 namespace ios { |
| 20 | 20 |
| 21 class ChromeBrowserState; | 21 class ChromeBrowserState; |
| 22 | 22 |
| 23 // TopSitesFactory is a singleton that associates history::TopSites instance to | 23 // TopSitesFactory is a singleton that associates history::TopSites instance to |
| 24 // ChromeBrowserState. | 24 // ChromeBrowserState. |
| 25 class TopSitesFactory : public RefcountedBrowserStateKeyedServiceFactory { | 25 class TopSitesFactory : public RefcountedBrowserStateKeyedServiceFactory { |
| 26 public: | 26 public: |
| 27 static scoped_refptr<history::TopSites> GetForBrowserState( | 27 static scoped_refptr<history::TopSites> GetForBrowserState( |
| 28 ios::ChromeBrowserState* browser_state); | 28 ios::ChromeBrowserState* browser_state); |
| 29 static TopSitesFactory* GetInstance(); | 29 static TopSitesFactory* GetInstance(); |
| 30 | 30 |
| 31 private: | 31 private: |
| 32 friend struct DefaultSingletonTraits<TopSitesFactory>; | 32 friend struct base::DefaultSingletonTraits<TopSitesFactory>; |
| 33 | 33 |
| 34 TopSitesFactory(); | 34 TopSitesFactory(); |
| 35 ~TopSitesFactory() override; | 35 ~TopSitesFactory() override; |
| 36 | 36 |
| 37 // RefcountedBrowserStateKeyedServiceFactory implementation. | 37 // RefcountedBrowserStateKeyedServiceFactory implementation. |
| 38 scoped_refptr<RefcountedKeyedService> BuildServiceInstanceFor( | 38 scoped_refptr<RefcountedKeyedService> BuildServiceInstanceFor( |
| 39 web::BrowserState* context) const override; | 39 web::BrowserState* context) const override; |
| 40 void RegisterBrowserStatePrefs( | 40 void RegisterBrowserStatePrefs( |
| 41 user_prefs::PrefRegistrySyncable* registry) override; | 41 user_prefs::PrefRegistrySyncable* registry) override; |
| 42 bool ServiceIsNULLWhileTesting() const override; | 42 bool ServiceIsNULLWhileTesting() const override; |
| 43 | 43 |
| 44 DISALLOW_COPY_AND_ASSIGN(TopSitesFactory); | 44 DISALLOW_COPY_AND_ASSIGN(TopSitesFactory); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 } // namespace ios | 47 } // namespace ios |
| 48 | 48 |
| 49 #endif // IOS_CHROME_BROWSER_HISTORY_TOP_SITES_FACTORY_H_ | 49 #endif // IOS_CHROME_BROWSER_HISTORY_TOP_SITES_FACTORY_H_ |
| OLD | NEW |