roll libyuv from 1483 to 1487
[chromium-blink-merge.git] / ios / chrome / browser / bookmarks / bookmark_model_factory.h
blobfceae9809b7a18a487e9cff409c07932732be179
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
3 // found in the LICENSE file.
5 #ifndef IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_
6 #define IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_
8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
12 namespace base {
13 template <typename T>
14 struct DefaultSingletonTraits;
15 } // namespace base
17 namespace bookmarks {
18 class BookmarkModel;
21 namespace ios {
23 class ChromeBrowserState;
25 // Singleton that owns all BookmarkModels and associates them with
26 // ios::ChromeBrowserState.
27 class BookmarkModelFactory : public BrowserStateKeyedServiceFactory {
28 public:
29 static bookmarks::BookmarkModel* GetForBrowserState(
30 ios::ChromeBrowserState* browser_state);
31 static bookmarks::BookmarkModel* GetForBrowserStateIfExists(
32 ios::ChromeBrowserState* browser_state);
33 static BookmarkModelFactory* GetInstance();
35 private:
36 friend struct base::DefaultSingletonTraits<BookmarkModelFactory>;
38 BookmarkModelFactory();
39 ~BookmarkModelFactory() override;
41 // BrowserStateKeyedServiceFactory implementation.
42 void RegisterBrowserStatePrefs(
43 user_prefs::PrefRegistrySyncable* registry) override;
44 scoped_ptr<KeyedService> BuildServiceInstanceFor(
45 web::BrowserState* context) const override;
46 web::BrowserState* GetBrowserStateToUse(
47 web::BrowserState* context) const override;
48 bool ServiceIsNULLWhileTesting() const override;
50 DISALLOW_COPY_AND_ASSIGN(BookmarkModelFactory);
53 } // namespace ios
55 #endif // IOS_CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_