Index: chrome/browser/local_discovery/wifi/wifi_manager.cc |
diff --git a/chrome/browser/local_discovery/wifi/wifi_manager.cc b/chrome/browser/local_discovery/wifi/wifi_manager.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b8e74f705aa41b79b188cf30b5fb934aae47bc42 |
--- /dev/null |
+++ b/chrome/browser/local_discovery/wifi/wifi_manager.cc |
@@ -0,0 +1,19 @@ |
+// 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 "chrome/browser/local_discovery/wifi/wifi_manager.h" |
+ |
+namespace local_discovery { |
+ |
+namespace wifi { |
+ |
+WifiCredentials WifiCredentials::FromPSK(const std::string& psk) { |
+ WifiCredentials return_value; |
+ return_value.psk = psk; |
+ return return_value; |
+} |
+ |
+} // namespace wifi |
+ |
+} // namespace local_discovery |