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

Side by Side Diff: components/wifi_sync/wifi_credential_syncable_service_factory.cc

Issue 675993005: components: add wifi_sync component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@local-master
Patch Set: fix style issues, and unnecessary virtual functions Created 6 years, 1 month 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
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698