summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorEtan Cohen <etancohen@google.com>2017-02-10 00:48:50 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-02-10 00:48:51 +0000
commita117e55614a5f0ca9bdbc92f09ff248e59db7d56 (patch)
treed658689f4502753e9f46b13be88d6e4595fb3415 /service
parent64950d46f5469e5e6ce32ccc81a1f751c40f4202 (diff)
parent53f9d554a19eb192796253bdefbe86009ff7be7c (diff)
Merge "[AWARE] Remove event callback for vendor-specific attributes."
Diffstat (limited to 'service')
-rw-r--r--service/java/com/android/server/wifi/aware/WifiAwareNativeCallback.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/service/java/com/android/server/wifi/aware/WifiAwareNativeCallback.java b/service/java/com/android/server/wifi/aware/WifiAwareNativeCallback.java
index 24e2c689c..61b1d47b2 100644
--- a/service/java/com/android/server/wifi/aware/WifiAwareNativeCallback.java
+++ b/service/java/com/android/server/wifi/aware/WifiAwareNativeCallback.java
@@ -17,7 +17,6 @@
package com.android.server.wifi.aware;
import android.hardware.wifi.V1_0.IWifiNanIfaceEventCallback;
-import android.hardware.wifi.V1_0.NanBeaconSdfPayloadInd;
import android.hardware.wifi.V1_0.NanCapabilities;
import android.hardware.wifi.V1_0.NanClusterEventInd;
import android.hardware.wifi.V1_0.NanClusterEventType;
@@ -250,16 +249,6 @@ public class WifiAwareNativeCallback extends IWifiNanIfaceEventCallback.Stub {
}
@Override
- public void notifyBeaconSdfPayloadResponse(short id, WifiNanStatus status) {
- if (VDBG) {
- Log.v(TAG, "notifyBeaconSdfPayloadResponse: id=" + id + ", status="
- + statusString(status));
- }
-
- // NOP
- }
-
- @Override
public void eventClusterEvent(NanClusterEventInd event) {
if (VDBG) {
Log.v(TAG, "eventClusterEvent: eventType=" + event.eventType + ", addr="
@@ -389,14 +378,6 @@ public class WifiAwareNativeCallback extends IWifiNanIfaceEventCallback.Stub {
mWifiAwareStateManager.onDataPathEndNotification(ndpInstanceId);
}
- @Override
- public void eventBeaconSdfPayload(NanBeaconSdfPayloadInd event) {
- if (VDBG) Log.v(TAG, "eventBeaconSdfPayload");
-
- // NOP
- Log.e(TAG, "eventBeaconSdfPayload: not configured - should not happen!");
- }
-
// utilities
/**