| Index: net/base/network_interfaces_android.cc
|
| diff --git a/net/base/network_interfaces_android.cc b/net/base/network_interfaces_android.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b7b56c38d59c44c57b272f8b24bb1b1e314de246
|
| --- /dev/null
|
| +++ b/net/base/network_interfaces_android.cc
|
| @@ -0,0 +1,15 @@
|
| +// Copyright (c) 2016 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 "net/base/network_interfaces.h"
|
| +
|
| +#include "net/android/network_library.h"
|
| +
|
| +namespace net {
|
| +
|
| +std::string GetWifiSSID() {
|
| + return android::GetCurrentWifiConnectionSsid();
|
| +}
|
| +
|
| +} // namespace net
|
|
|