Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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. | |
| 4 | |
| 5 #include "components/wifi_sync/wifi_credential_syncable_service_factory.h" | |
| 6 | |
| 7 #include "components/keyed_service/content/browser_context_dependency_manager.h" | |
| 8 | |
| 9 namespace wifi_sync { | |
| 10 | |
| 11 // static | |
| 12 WifiCredentialSyncableService* | |
| 13 WifiCredentialSyncableServiceFactory::GetForProfile(Profile* profile) { | |
| 14 NOTIMPLEMENTED(); | |
|
Elliot Glaysher
2014/10/29 19:41:17
I don't understand why you've written this stub.
mukesh agrawal
2014/10/30 18:41:29
Fair point. This one can wait until later.
| |
| 15 return nullptr; | |
| 16 } | |
| 17 | |
| 18 // static | |
| 19 WifiCredentialSyncableServiceFactory* | |
| 20 WifiCredentialSyncableServiceFactory::GetInstance() { | |
| 21 NOTIMPLEMENTED(); | |
| 22 return nullptr; | |
| 23 } | |
| 24 | |
| 25 WifiCredentialSyncableServiceFactory::WifiCredentialSyncableServiceFactory() | |
| 26 : BrowserContextKeyedServiceFactory( | |
| 27 "WifiCredentialSyncableService", | |
| 28 BrowserContextDependencyManager::GetInstance()) { | |
| 29 } | |
| 30 | |
| 31 WifiCredentialSyncableServiceFactory::~WifiCredentialSyncableServiceFactory() { | |
| 32 } | |
| 33 | |
| 34 KeyedService* WifiCredentialSyncableServiceFactory::BuildServiceInstanceFor( | |
| 35 content::BrowserContext* context) const { | |
| 36 NOTIMPLEMENTED(); | |
| 37 return nullptr; | |
| 38 } | |
| 39 | |
| 40 content::BrowserContext* | |
| 41 WifiCredentialSyncableServiceFactory::GetBrowserContextToUse( | |
| 42 content::BrowserContext* context) const { | |
| 43 NOTIMPLEMENTED(); | |
| 44 return nullptr; | |
| 45 } | |
| 46 | |
| 47 } // namespace wifi_sync | |
| OLD | NEW |