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

Side by Side Diff: ios/public/test/fake_sync_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_PUBLIC_TEST_FAKE_SYNC_SERVICE_FACTORY_H_ 5 #ifndef IOS_PUBLIC_TEST_FAKE_SYNC_SERVICE_FACTORY_H_
6 #define IOS_PUBLIC_TEST_FAKE_SYNC_SERVICE_FACTORY_H_ 6 #define IOS_PUBLIC_TEST_FAKE_SYNC_SERVICE_FACTORY_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 sync_driver { 17 namespace sync_driver {
16 class FakeSyncService; 18 class FakeSyncService;
17 } 19 }
18 20
19 namespace ios { 21 namespace ios {
20 22
21 class ChromeBrowserState; 23 class ChromeBrowserState;
22 24
23 class FakeSyncServiceFactory : public BrowserStateKeyedServiceFactory { 25 class FakeSyncServiceFactory : public BrowserStateKeyedServiceFactory {
24 public: 26 public:
25 // Returns the singleton FakeSyncServiceFactory instance. 27 // Returns the singleton FakeSyncServiceFactory instance.
26 static FakeSyncServiceFactory* GetInstance(); 28 static FakeSyncServiceFactory* GetInstance();
27 29
28 // Returns the FakeSyncService associated to |browser_state|. 30 // Returns the FakeSyncService associated to |browser_state|.
29 static sync_driver::FakeSyncService* GetForBrowserState( 31 static sync_driver::FakeSyncService* GetForBrowserState(
30 ios::ChromeBrowserState* browser_state); 32 ios::ChromeBrowserState* browser_state);
31 33
32 // Returns the FakeSyncService associated to |browser_state|, if it exists. 34 // Returns the FakeSyncService associated to |browser_state|, if it exists.
33 static sync_driver::FakeSyncService* GetForBrowserStateIfExists( 35 static sync_driver::FakeSyncService* GetForBrowserStateIfExists(
34 ios::ChromeBrowserState* browser_state); 36 ios::ChromeBrowserState* browser_state);
35 37
36 private: 38 private:
37 friend struct DefaultSingletonTraits<FakeSyncServiceFactory>; 39 friend struct base::DefaultSingletonTraits<FakeSyncServiceFactory>;
38 40
39 FakeSyncServiceFactory(); 41 FakeSyncServiceFactory();
40 ~FakeSyncServiceFactory() override; 42 ~FakeSyncServiceFactory() override;
41 43
42 // BrowserStateKeyedServiceFactory implementation. 44 // BrowserStateKeyedServiceFactory implementation.
43 scoped_ptr<KeyedService> BuildServiceInstanceFor( 45 scoped_ptr<KeyedService> BuildServiceInstanceFor(
44 web::BrowserState* context) const override; 46 web::BrowserState* context) const override;
45 47
46 DISALLOW_COPY_AND_ASSIGN(FakeSyncServiceFactory); 48 DISALLOW_COPY_AND_ASSIGN(FakeSyncServiceFactory);
47 }; 49 };
48 50
49 } // namespace ios 51 } // namespace ios
50 52
51 #endif // IOS_PUBLIC_TEST_FAKE_SYNC_SERVICE_FACTORY_H_ 53 #endif // IOS_PUBLIC_TEST_FAKE_SYNC_SERVICE_FACTORY_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/web_data_service_factory.cc ('k') | ios/public/test/fake_sync_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698