diff options
author | Evan Charlton <evanc@google.com> | 2014-11-08 15:49:16 -0800 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-11-10 11:52:31 -0800 |
commit | 0e094d926c306c3667bcdf6f23c52cc7181f25f3 (patch) | |
tree | 4a41b85db95d9e74e3f2955083cef3d348927676 /telecomm/java/android/telecom/ConnectionRequest.java | |
parent | 6c912b7d056c67b41fd46f31de168795e97c2336 (diff) |
Apply @hide / @SystemApi to android.telecom.*
Move the android.telecom.* namespace back to @hide, and also mark it
with @SystemApi so that system-privileged apps can use them.
Bug: 18302450
Change-Id: I33ae1b9b0dfdb1c5eff51ca3c829196bcfc9411c
Diffstat (limited to 'telecomm/java/android/telecom/ConnectionRequest.java')
-rw-r--r-- | telecomm/java/android/telecom/ConnectionRequest.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/ConnectionRequest.java b/telecomm/java/android/telecom/ConnectionRequest.java index 71b481b89c77..f691c179af53 100644 --- a/telecomm/java/android/telecom/ConnectionRequest.java +++ b/telecomm/java/android/telecom/ConnectionRequest.java @@ -16,6 +16,7 @@ package android.telecom; +import android.annotation.SystemApi; import android.net.Uri; import android.os.Bundle; import android.os.Parcel; @@ -24,7 +25,9 @@ import android.os.Parcelable; /** * Simple data container encapsulating a request to some entity to * create a new {@link Connection}. + * @hide */ +@SystemApi public final class ConnectionRequest implements Parcelable { // TODO: Token to limit recursive invocations |