Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Unified Diff: net/base/network_interfaces_android.cc

Issue 1633733005: Native SSID extraction moved to platform code on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added permission for net_unittests Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/android/unittest_support/AndroidManifest.xml ('k') | net/base/network_interfaces_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..8f18fd7aa4fb963d06f1874ce175cf5021318987
--- /dev/null
+++ b/net/base/network_interfaces_android.cc
@@ -0,0 +1,15 @@
+// Copyright 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::GetWifiSSID();
+}
+
+} // namespace net
« no previous file with comments | « net/android/unittest_support/AndroidManifest.xml ('k') | net/base/network_interfaces_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698