Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Side by Side Diff: ios/chrome/browser/enhanced_bookmarks/bookmark_server_cluster_service_factory.h

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_FA CTORY_H_ 5 #ifndef IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_FA CTORY_H_
6 #define IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_FA CTORY_H_ 6 #define IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_FA CTORY_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "components/keyed_service/ios/browser_state_keyed_service_factory.h" 10 #include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
11 11
12 namespace base {
12 template <typename T> 13 template <typename T>
13 struct DefaultSingletonTraits; 14 struct DefaultSingletonTraits;
15 } // namespace base
14 16
15 namespace ios { 17 namespace ios {
16 class ChromeBrowserState; 18 class ChromeBrowserState;
17 } 19 }
18 20
19 namespace enhanced_bookmarks { 21 namespace enhanced_bookmarks {
20 22
21 class BookmarkServerClusterService; 23 class BookmarkServerClusterService;
22 24
23 // A factory to create BookmarkServerClusterService and associate them to 25 // A factory to create BookmarkServerClusterService and associate them to
24 // ios::ChromeBrowserState. 26 // ios::ChromeBrowserState.
25 class BookmarkServerClusterServiceFactory 27 class BookmarkServerClusterServiceFactory
26 : public BrowserStateKeyedServiceFactory { 28 : public BrowserStateKeyedServiceFactory {
27 public: 29 public:
28 static BookmarkServerClusterServiceFactory* GetInstance(); 30 static BookmarkServerClusterServiceFactory* GetInstance();
29 static BookmarkServerClusterService* GetForBrowserState( 31 static BookmarkServerClusterService* GetForBrowserState(
30 ios::ChromeBrowserState* browser_state); 32 ios::ChromeBrowserState* browser_state);
31 33
32 private: 34 private:
33 friend struct DefaultSingletonTraits<BookmarkServerClusterServiceFactory>; 35 friend struct base::DefaultSingletonTraits<
36 BookmarkServerClusterServiceFactory>;
34 37
35 BookmarkServerClusterServiceFactory(); 38 BookmarkServerClusterServiceFactory();
36 ~BookmarkServerClusterServiceFactory() override; 39 ~BookmarkServerClusterServiceFactory() override;
37 40
38 // BrowserStateKeyedServiceFactory implementation. 41 // BrowserStateKeyedServiceFactory implementation.
39 scoped_ptr<KeyedService> BuildServiceInstanceFor( 42 scoped_ptr<KeyedService> BuildServiceInstanceFor(
40 web::BrowserState* context) const override; 43 web::BrowserState* context) const override;
41 web::BrowserState* GetBrowserStateToUse( 44 web::BrowserState* GetBrowserStateToUse(
42 web::BrowserState* context) const override; 45 web::BrowserState* context) const override;
43 46
44 DISALLOW_COPY_AND_ASSIGN(BookmarkServerClusterServiceFactory); 47 DISALLOW_COPY_AND_ASSIGN(BookmarkServerClusterServiceFactory);
45 }; 48 };
46 49
47 } // namespace enhanced_bookmarks 50 } // namespace enhanced_bookmarks
48 51
49 #endif // IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE _FACTORY_H_ 52 #endif // IOS_CHROME_BROWSER_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE _FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698