| 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 CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_ |
| 6 #define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_ | 6 #define CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" | 9 #include "components/keyed_service/content/browser_context_keyed_service_factory
.h" |
| 10 | 10 |
| 11 template <typename T> | 11 template <typename T> |
| 12 struct DefaultSingletonTraits; | 12 struct base::DefaultSingletonTraits; |
| 13 | 13 |
| 14 namespace offline_pages { | 14 namespace offline_pages { |
| 15 | 15 |
| 16 class OfflinePageModel; | 16 class OfflinePageModel; |
| 17 | 17 |
| 18 // A factory to create one unique OfflinePageModel. | 18 // A factory to create one unique OfflinePageModel. |
| 19 class OfflinePageModelFactory : public BrowserContextKeyedServiceFactory { | 19 class OfflinePageModelFactory : public BrowserContextKeyedServiceFactory { |
| 20 public: | 20 public: |
| 21 static OfflinePageModelFactory* GetInstance(); | 21 static OfflinePageModelFactory* GetInstance(); |
| 22 static OfflinePageModel* GetForBrowserContext( | 22 static OfflinePageModel* GetForBrowserContext( |
| 23 content::BrowserContext* context); | 23 content::BrowserContext* context); |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 friend struct DefaultSingletonTraits<OfflinePageModelFactory>; | 26 friend struct base::DefaultSingletonTraits<OfflinePageModelFactory>; |
| 27 | 27 |
| 28 OfflinePageModelFactory(); | 28 OfflinePageModelFactory(); |
| 29 ~OfflinePageModelFactory() override {} | 29 ~OfflinePageModelFactory() override {} |
| 30 | 30 |
| 31 KeyedService* BuildServiceInstanceFor( | 31 KeyedService* BuildServiceInstanceFor( |
| 32 content::BrowserContext* context) const override; | 32 content::BrowserContext* context) const override; |
| 33 | 33 |
| 34 content::BrowserContext* GetBrowserContextToUse( | 34 content::BrowserContext* GetBrowserContextToUse( |
| 35 content::BrowserContext* context) const override; | 35 content::BrowserContext* context) const override; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(OfflinePageModelFactory); | 37 DISALLOW_COPY_AND_ASSIGN(OfflinePageModelFactory); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace offline_pages | 40 } // namespace offline_pages |
| 41 | 41 |
| 42 #endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_ | 42 #endif // CHROME_BROWSER_ANDROID_OFFLINE_PAGES_OFFLINE_PAGE_MODEL_FACTORY_H_ |
| OLD | NEW |