Index: components/wifi_sync/wifi_credential_syncable_service_factory.cc |
diff --git a/components/wifi_sync/wifi_credential_syncable_service_factory.cc b/components/wifi_sync/wifi_credential_syncable_service_factory.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8a6e0aaf02e95c495f1239405c649cdcd835f588 |
--- /dev/null |
+++ b/components/wifi_sync/wifi_credential_syncable_service_factory.cc |
@@ -0,0 +1,47 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "components/wifi_sync/wifi_credential_syncable_service_factory.h" |
+ |
+#include "components/keyed_service/content/browser_context_dependency_manager.h" |
+ |
+namespace wifi_sync { |
+ |
+// static |
+WifiCredentialSyncableService* |
+WifiCredentialSyncableServiceFactory::GetForProfile(Profile* profile) { |
+ NOTIMPLEMENTED(); |
+ return nullptr; |
+} |
+ |
+// static |
+WifiCredentialSyncableServiceFactory* |
+WifiCredentialSyncableServiceFactory::GetInstance() { |
+ NOTIMPLEMENTED(); |
+ return nullptr; |
+} |
+ |
+WifiCredentialSyncableServiceFactory::WifiCredentialSyncableServiceFactory() |
+ : BrowserContextKeyedServiceFactory( |
+ "WifiCredentialSyncableService", |
+ BrowserContextDependencyManager::GetInstance()) { |
+} |
+ |
+WifiCredentialSyncableServiceFactory::~WifiCredentialSyncableServiceFactory() { |
+} |
+ |
+KeyedService* WifiCredentialSyncableServiceFactory::BuildServiceInstanceFor( |
+ content::BrowserContext* context) const { |
+ NOTIMPLEMENTED(); |
+ return nullptr; |
+} |
+ |
+content::BrowserContext* |
+WifiCredentialSyncableServiceFactory::GetBrowserContextToUse( |
+ content::BrowserContext* context) const { |
+ NOTIMPLEMENTED(); |
+ return nullptr; |
+} |
+ |
+} // namespace wifi_sync |