| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_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 namespace base { |
| 11 template <typename T> struct DefaultSingletonTraits; | 12 template <typename T> struct DefaultSingletonTraits; |
| 13 } |
| 12 | 14 |
| 13 class Profile; | 15 class Profile; |
| 14 | 16 |
| 15 namespace bookmarks { | 17 namespace bookmarks { |
| 16 class BookmarkModel; | 18 class BookmarkModel; |
| 17 } | 19 } |
| 18 | 20 |
| 19 // Singleton that owns all BookmarkModels and associates them with Profiles. | 21 // Singleton that owns all BookmarkModels and associates them with Profiles. |
| 20 class BookmarkModelFactory : public BrowserContextKeyedServiceFactory { | 22 class BookmarkModelFactory : public BrowserContextKeyedServiceFactory { |
| 21 public: | 23 public: |
| 22 static bookmarks::BookmarkModel* GetForProfile(Profile* profile); | 24 static bookmarks::BookmarkModel* GetForProfile(Profile* profile); |
| 23 | 25 |
| 24 static bookmarks::BookmarkModel* GetForProfileIfExists(Profile* profile); | 26 static bookmarks::BookmarkModel* GetForProfileIfExists(Profile* profile); |
| 25 | 27 |
| 26 static BookmarkModelFactory* GetInstance(); | 28 static BookmarkModelFactory* GetInstance(); |
| 27 | 29 |
| 28 private: | 30 private: |
| 29 friend struct DefaultSingletonTraits<BookmarkModelFactory>; | 31 friend struct base::DefaultSingletonTraits<BookmarkModelFactory>; |
| 30 | 32 |
| 31 BookmarkModelFactory(); | 33 BookmarkModelFactory(); |
| 32 ~BookmarkModelFactory() override; | 34 ~BookmarkModelFactory() override; |
| 33 | 35 |
| 34 // BrowserContextKeyedServiceFactory: | 36 // BrowserContextKeyedServiceFactory: |
| 35 KeyedService* BuildServiceInstanceFor( | 37 KeyedService* BuildServiceInstanceFor( |
| 36 content::BrowserContext* context) const override; | 38 content::BrowserContext* context) const override; |
| 37 void RegisterProfilePrefs( | 39 void RegisterProfilePrefs( |
| 38 user_prefs::PrefRegistrySyncable* registry) override; | 40 user_prefs::PrefRegistrySyncable* registry) override; |
| 39 content::BrowserContext* GetBrowserContextToUse( | 41 content::BrowserContext* GetBrowserContextToUse( |
| 40 content::BrowserContext* context) const override; | 42 content::BrowserContext* context) const override; |
| 41 bool ServiceIsNULLWhileTesting() const override; | 43 bool ServiceIsNULLWhileTesting() const override; |
| 42 | 44 |
| 43 DISALLOW_COPY_AND_ASSIGN(BookmarkModelFactory); | 45 DISALLOW_COPY_AND_ASSIGN(BookmarkModelFactory); |
| 44 }; | 46 }; |
| 45 | 47 |
| 46 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ | 48 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ |
| OLD | NEW |