diff options
| author | Jaikumar Ganesh <jaikumar@google.com> | 2011-02-18 14:52:32 -0800 |
|---|---|---|
| committer | Jaikumar Ganesh <jaikumar@google.com> | 2011-02-22 10:42:26 -0800 |
| commit | ad5d9c0ffd34c96faffdcee714e20ae7bd702ada (patch) | |
| tree | e0153e674610a0551ad117428f5bb0e8a3f1c19f /framework/java/android/bluetooth/BluetoothProfile.java | |
| parent | 76caa7435fa5f12fb3da55e72da7c9b9406ebc82 (diff) | |
Make BluetoothInputDevice inherit from BluetoothProfile.
This makes it in sync with BluetoothHeadset and BluetoothA2dp profiles.
Change-Id: I3ddb1d18b04aacb173b7bc376bca21c277a6afe4
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothProfile.java')
| -rw-r--r-- | framework/java/android/bluetooth/BluetoothProfile.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/framework/java/android/bluetooth/BluetoothProfile.java b/framework/java/android/bluetooth/BluetoothProfile.java index ef80195d93..1ffee72053 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -62,6 +62,11 @@ public interface BluetoothProfile { * A2DP profile. */ public static final int A2DP = 2; + /** + * Input Device Profile + * @hide + */ + public static final int INPUT_DEVICE = 3; /** * Default priority for devices that we try to auto-connect to and |
