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 "chrome/browser/local_discovery/wifi/wifi_manager.h" | |
6 | |
7 namespace local_discovery { | |
8 | |
9 namespace wifi { | |
10 | |
11 WifiCredentials WifiCredentials::FromPSK(const std::string& psk) { | |
12 WifiCredentials return_value; | |
13 return_value.psk = psk; | |
14 return return_value; | |
15 } | |
16 | |
17 } // namespace wifi | |
18 | |
19 } // namespace local_discovery | |
OLD | NEW |