summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorIhab Awad <ihab@google.com>2014-12-04 16:54:07 -0800
committerIhab Awad <ihab@google.com>2014-12-04 16:54:07 -0800
commitc047bd464b70f64ac2839c8d04e00c7ae4a66bfb (patch)
treeaa0401365b7b3f418d1311cb9901affb8314c380 /telecomm
parent0a77897bb6671220fe9d53964ccd2651216dc7ba (diff)
downloadframeworks_base-c047bd464b70f64ac2839c8d04e00c7ae4a66bfb.zip
frameworks_base-c047bd464b70f64ac2839c8d04e00c7ae4a66bfb.tar.gz
frameworks_base-c047bd464b70f64ac2839c8d04e00c7ae4a66bfb.tar.bz2
Relax access on deprecated fields for compatibility.
Bug: 18610816 Change-Id: If2398069ecd1c5fa1e49af50527bf817b29fde96
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecom/AudioState.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/telecomm/java/android/telecom/AudioState.java b/telecomm/java/android/telecom/AudioState.java
index 3271ebf..9c03319 100644
--- a/telecomm/java/android/telecom/AudioState.java
+++ b/telecomm/java/android/telecom/AudioState.java
@@ -54,14 +54,14 @@ public final class AudioState implements Parcelable {
public static final int ROUTE_ALL = ROUTE_EARPIECE | ROUTE_BLUETOOTH | ROUTE_WIRED_HEADSET |
ROUTE_SPEAKER;
- /** @hide */
- @Deprecated public final boolean isMuted;
+ /** Note: Deprecated, please do not use if possible. */
+ @SystemApi public final boolean isMuted;
- /** @hide */
- @Deprecated public final int route;
+ /** Note: Deprecated, please do not use if possible. */
+ @SystemApi public final int route;
- /** @hide */
- @Deprecated public final int supportedRouteMask;
+ /** Note: Deprecated, please do not use if possible. */
+ @SystemApi public final int supportedRouteMask;
public AudioState(boolean muted, int route, int supportedRouteMask) {
this.isMuted = muted;