summaryrefslogtreecommitdiffstats
path: root/wifi/java/android/net/wifi/IWifiScanner.aidl
diff options
context:
space:
mode:
authorVinit Deshapnde <vinitd@google.com>2014-05-07 21:09:11 -0700
committerVinit Deshapnde <vinitd@google.com>2014-05-07 21:14:24 -0700
commit011e1b35a64180d6f0234af8a3c2b70777eb9f39 (patch)
tree79c54cad4f30c493f587e4ac0fb1e89bbaecc714 /wifi/java/android/net/wifi/IWifiScanner.aidl
parentc4bfcc12e92fe3d8f6f1dad0c12176d6dae3131d (diff)
downloadframeworks_base-011e1b35a64180d6f0234af8a3c2b70777eb9f39.zip
frameworks_base-011e1b35a64180d6f0234af8a3c2b70777eb9f39.tar.gz
frameworks_base-011e1b35a64180d6f0234af8a3c2b70777eb9f39.tar.bz2
Initial implementation of WifiScanner
This change implements basic functionality of WifiScanner. Following functionality is enabled 1. Scanning - specify a list of channels to scan 2. Significant change detection 3. AP hotlist Change-Id: Ieef75b96bdbbd3c7d9b9e698bd16e64d3b465254
Diffstat (limited to 'wifi/java/android/net/wifi/IWifiScanner.aidl')
-rw-r--r--wifi/java/android/net/wifi/IWifiScanner.aidl27
1 files changed, 27 insertions, 0 deletions
diff --git a/wifi/java/android/net/wifi/IWifiScanner.aidl b/wifi/java/android/net/wifi/IWifiScanner.aidl
new file mode 100644
index 0000000..fef2d11
--- /dev/null
+++ b/wifi/java/android/net/wifi/IWifiScanner.aidl
@@ -0,0 +1,27 @@
+/*
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.net.wifi;
+
+import android.os.Messenger;
+
+/**
+ * {@hide}
+ */
+interface IWifiScanner
+{
+ Messenger getMessenger();
+}