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_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_FACTORY_H_
6 #define IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_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"
13 struct DefaultSingletonTraits
;
16 class ChromeBrowserState
;
19 namespace enhanced_bookmarks
{
21 class BookmarkServerClusterService
;
23 // A factory to create BookmarkServerClusterService and associate them to
24 // ios::ChromeBrowserState.
25 class BookmarkServerClusterServiceFactory
26 : public BrowserStateKeyedServiceFactory
{
28 static BookmarkServerClusterServiceFactory
* GetInstance();
29 static BookmarkServerClusterService
* GetForBrowserState(
30 ios::ChromeBrowserState
* browser_state
);
33 friend struct DefaultSingletonTraits
<BookmarkServerClusterServiceFactory
>;
35 BookmarkServerClusterServiceFactory();
36 ~BookmarkServerClusterServiceFactory() override
;
38 // BrowserStateKeyedServiceFactory implementation.
39 scoped_ptr
<KeyedService
> BuildServiceInstanceFor(
40 web::BrowserState
* context
) const override
;
41 web::BrowserState
* GetBrowserStateToUse(
42 web::BrowserState
* context
) const override
;
44 DISALLOW_COPY_AND_ASSIGN(BookmarkServerClusterServiceFactory
);
47 } // namespace enhanced_bookmarks
49 #endif // IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_FACTORY_H_