| 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 #include "ios/public/test/test_keyed_service_provider.h" | 5 #include "ios/public/test/test_keyed_service_provider.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 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 "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 KeyedServiceBaseFactory* TestKeyedServiceProvider::GetBookmarkModelFactory() { | 75 KeyedServiceBaseFactory* TestKeyedServiceProvider::GetBookmarkModelFactory() { |
| 76 return MissingServiceKeyedServiceFactory::GetInstance(); | 76 return MissingServiceKeyedServiceFactory::GetInstance(); |
| 77 } | 77 } |
| 78 | 78 |
| 79 bookmarks::BookmarkModel* | 79 bookmarks::BookmarkModel* |
| 80 TestKeyedServiceProvider::GetBookmarkModelForBrowserState( | 80 TestKeyedServiceProvider::GetBookmarkModelForBrowserState( |
| 81 ChromeBrowserState* browser_state) { | 81 ChromeBrowserState* browser_state) { |
| 82 return nullptr; | 82 return nullptr; |
| 83 } | 83 } |
| 84 | 84 |
| 85 KeyedServiceBaseFactory* TestKeyedServiceProvider::GetSigninManagerFactory() { | |
| 86 return MissingServiceKeyedServiceFactory::GetInstance(); | |
| 87 } | |
| 88 | |
| 89 SigninManager* TestKeyedServiceProvider::GetSigninManagerForBrowserState( | |
| 90 ChromeBrowserState* browser_state) { | |
| 91 return nullptr; | |
| 92 } | |
| 93 | |
| 94 KeyedServiceBaseFactory* | 85 KeyedServiceBaseFactory* |
| 95 TestKeyedServiceProvider::GetPersonalDataManagerFactory() { | 86 TestKeyedServiceProvider::GetPersonalDataManagerFactory() { |
| 96 return MissingServiceKeyedServiceFactory::GetInstance(); | 87 return MissingServiceKeyedServiceFactory::GetInstance(); |
| 97 } | 88 } |
| 98 | 89 |
| 99 autofill::PersonalDataManager* | 90 autofill::PersonalDataManager* |
| 100 TestKeyedServiceProvider::GetPersonalDataManagerForBrowserState( | 91 TestKeyedServiceProvider::GetPersonalDataManagerForBrowserState( |
| 101 ChromeBrowserState* browser_state) { | 92 ChromeBrowserState* browser_state) { |
| 102 return nullptr; | 93 return nullptr; |
| 103 } | 94 } |
| 104 | 95 |
| 105 KeyedServiceBaseFactory* TestKeyedServiceProvider::GetSyncServiceFactory() { | 96 KeyedServiceBaseFactory* TestKeyedServiceProvider::GetSyncServiceFactory() { |
| 106 return FakeSyncServiceFactory::GetInstance(); | 97 return FakeSyncServiceFactory::GetInstance(); |
| 107 } | 98 } |
| 108 | 99 |
| 109 sync_driver::SyncService* | 100 sync_driver::SyncService* |
| 110 TestKeyedServiceProvider::GetSyncServiceForBrowserState( | 101 TestKeyedServiceProvider::GetSyncServiceForBrowserState( |
| 111 ChromeBrowserState* browser_state) { | 102 ChromeBrowserState* browser_state) { |
| 112 return FakeSyncServiceFactory::GetForBrowserState(browser_state); | 103 return FakeSyncServiceFactory::GetForBrowserState(browser_state); |
| 113 } | 104 } |
| 114 | 105 |
| 115 } // namespace ios | 106 } // namespace ios |
| OLD | NEW |