Set default phonebook access to ACCESS_REJECTED when user didn't choose one

am: 1f9309bd11

Change-Id: I142d2737f6444b5148963c1ca7af84e8cf0eded3
This commit is contained in:
Zongheng Wang
2019-09-10 18:16:49 -07:00
committed by android-build-merger

View File

@@ -25,6 +25,7 @@ import android.content.SharedPreferences;
import android.os.ParcelUuid;
import android.os.SystemClock;
import android.text.TextUtils;
import android.util.EventLog;
import android.util.Log;
import android.bluetooth.BluetoothAdapter;
@@ -823,10 +824,9 @@ public class CachedBluetoothDevice implements Comparable<CachedBluetoothDevice>
== BluetoothClass.Device.AUDIO_VIDEO_HANDSFREE ||
mDevice.getBluetoothClass().getDeviceClass()
== BluetoothClass.Device.AUDIO_VIDEO_WEARABLE_HEADSET) {
setPhonebookPermissionChoice(CachedBluetoothDevice.ACCESS_ALLOWED);
} else {
setPhonebookPermissionChoice(CachedBluetoothDevice.ACCESS_REJECTED);
EventLog.writeEvent(0x534e4554, "138529441", -1, "");
}
setPhonebookPermissionChoice(CachedBluetoothDevice.ACCESS_REJECTED);
}
}
}