1 // Copyright 2014 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_ENHANCED_BOOKMARKS_ENHANCED_BOOKMARK_MODEL_FACTORY_H_
6 #define CHROME_BROWSER_ENHANCED_BOOKMARKS_ENHANCED_BOOKMARK_MODEL_FACTORY_H_
8 #include "base/macros.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
12 struct DefaultSingletonTraits
;
14 namespace enhanced_bookmarks
{
16 class EnhancedBookmarkModel
;
18 // A factory to create one unique EnhancedBookmarkModel.
19 class EnhancedBookmarkModelFactory
: public BrowserContextKeyedServiceFactory
{
21 static EnhancedBookmarkModelFactory
* GetInstance();
22 static EnhancedBookmarkModel
* GetForBrowserContext(
23 content::BrowserContext
* context
);
26 friend struct DefaultSingletonTraits
<EnhancedBookmarkModelFactory
>;
28 EnhancedBookmarkModelFactory();
29 ~EnhancedBookmarkModelFactory() override
{}
31 KeyedService
* BuildServiceInstanceFor(
32 content::BrowserContext
* context
) const override
;
34 content::BrowserContext
* GetBrowserContextToUse(
35 content::BrowserContext
* context
) const override
;
37 DISALLOW_COPY_AND_ASSIGN(EnhancedBookmarkModelFactory
);
40 } // namespace enhanced_bookmarks
42 #endif // CHROME_BROWSER_ENHANCED_BOOKMARKS_ENHANCED_BOOKMARK_MODEL_FACTORY_H_