| OLD | NEW |
| 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_ |
| OLD | NEW |