ExtensionSyncService: listen for relevant changes instead of being explicitly called...
[chromium-blink-merge.git] / chrome / browser / bookmarks / bookmark_model_factory.h
blob57700f0f9e7ef9c13101c0cd24e537d3f996642b
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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_
8 #include "base/macros.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
11 template <typename T> struct DefaultSingletonTraits;
13 class Profile;
15 namespace bookmarks {
16 class BookmarkModel;
19 // Singleton that owns all BookmarkModels and associates them with Profiles.
20 class BookmarkModelFactory : public BrowserContextKeyedServiceFactory {
21 public:
22 static bookmarks::BookmarkModel* GetForProfile(Profile* profile);
24 static bookmarks::BookmarkModel* GetForProfileIfExists(Profile* profile);
26 static BookmarkModelFactory* GetInstance();
28 private:
29 friend struct DefaultSingletonTraits<BookmarkModelFactory>;
31 BookmarkModelFactory();
32 ~BookmarkModelFactory() override;
34 // BrowserContextKeyedServiceFactory:
35 KeyedService* BuildServiceInstanceFor(
36 content::BrowserContext* context) const override;
37 void RegisterProfilePrefs(
38 user_prefs::PrefRegistrySyncable* registry) override;
39 content::BrowserContext* GetBrowserContextToUse(
40 content::BrowserContext* context) const override;
41 bool ServiceIsNULLWhileTesting() const override;
43 DISALLOW_COPY_AND_ASSIGN(BookmarkModelFactory);
46 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_