diff options
author | Jay Shrauner <shrauner@google.com> | 2015-04-14 18:16:10 -0700 |
---|---|---|
committer | Jay Shrauner <shrauner@google.com> | 2015-04-15 11:05:50 -0700 |
commit | 193de667edf016965cf8c2a9c8e16433d0d0307b (patch) | |
tree | 137d287b5b1a689adb62a4811bee779aa91a747b /telecomm/java/android/telecom/AudioState.java | |
parent | d05bd467ba191833522e5b78da54bc5eab7bab2c (diff) | |
download | frameworks_base-193de667edf016965cf8c2a9c8e16433d0d0307b.zip frameworks_base-193de667edf016965cf8c2a9c8e16433d0d0307b.tar.gz frameworks_base-193de667edf016965cf8c2a9c8e16433d0d0307b.tar.bz2 |
DO NOT MERGE Remove deprecated telecom APIs. Mark others final.
Bug:
Change-Id: I8a04903052a964f3997b5bb36730b8b200c8e472
Diffstat (limited to 'telecomm/java/android/telecom/AudioState.java')
-rw-r--r-- | telecomm/java/android/telecom/AudioState.java | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/telecomm/java/android/telecom/AudioState.java b/telecomm/java/android/telecom/AudioState.java index 9c03319..0720df3 100644 --- a/telecomm/java/android/telecom/AudioState.java +++ b/telecomm/java/android/telecom/AudioState.java @@ -54,14 +54,9 @@ public final class AudioState implements Parcelable { public static final int ROUTE_ALL = ROUTE_EARPIECE | ROUTE_BLUETOOTH | ROUTE_WIRED_HEADSET | ROUTE_SPEAKER; - /** Note: Deprecated, please do not use if possible. */ - @SystemApi public final boolean isMuted; - - /** Note: Deprecated, please do not use if possible. */ - @SystemApi public final int route; - - /** Note: Deprecated, please do not use if possible. */ - @SystemApi public final int supportedRouteMask; + private final boolean isMuted; + private final int route; + private final int supportedRouteMask; public AudioState(boolean muted, int route, int supportedRouteMask) { this.isMuted = muted; |