Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
|
bengr
2016/01/30 01:12:30
Current convention is to remove the "(c)".
ripp
2016/02/01 09:33:47
Done.
| |
| 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 "net/base/network_interfaces.h" | |
| 6 | |
| 7 #include "net/android/network_library.h" | |
| 8 | |
| 9 namespace net { | |
| 10 | |
| 11 std::string GetWifiSSID() { | |
| 12 return android::GetWifiSSID(); | |
| 13 } | |
| 14 | |
| 15 } // namespace net | |
| OLD | NEW |