diff options
author | Ravindra <c_rthat@codeaurora.org> | 2015-10-21 14:34:17 +0530 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2015-10-23 10:39:10 -0700 |
commit | 587e6e7e7713b79321f16fd8fa98f5ef1c63ebc4 (patch) | |
tree | 5ff63028d285d990db7bd806b8c5dd0d00b60dea /telecomm | |
parent | dfc3f6aaeefceda4ff0337fa0e51eab83c0c820e (diff) | |
download | frameworks_base-587e6e7e7713b79321f16fd8fa98f5ef1c63ebc4.zip frameworks_base-587e6e7e7713b79321f16fd8fa98f5ef1c63ebc4.tar.gz frameworks_base-587e6e7e7713b79321f16fd8fa98f5ef1c63ebc4.tar.bz2 |
Fix to prevent CTS failures.
Update the ConnectionRequest with phone account selected for
placing emergency call
Change-Id: Iba4cbdf4fa90408d0db34a340df8f89c1cb3966d
CRs-Fixed: 922759
Diffstat (limited to 'telecomm')
-rw-r--r-- | telecomm/java/android/telecom/ConnectionRequest.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/ConnectionRequest.java b/telecomm/java/android/telecom/ConnectionRequest.java index 6863214..2e8f8fd 100644 --- a/telecomm/java/android/telecom/ConnectionRequest.java +++ b/telecomm/java/android/telecom/ConnectionRequest.java @@ -28,7 +28,7 @@ import android.os.Parcelable; public final class ConnectionRequest implements Parcelable { // TODO: Token to limit recursive invocations - private final PhoneAccountHandle mAccountHandle; + private PhoneAccountHandle mAccountHandle; private final Uri mAddress; private final Bundle mExtras; private final int mVideoState; @@ -74,6 +74,9 @@ public final class ConnectionRequest implements Parcelable { */ public PhoneAccountHandle getAccountHandle() { return mAccountHandle; } + /** {@hide} */ + public void setAccountHandle(PhoneAccountHandle acc) { mAccountHandle = acc; } + /** * The handle (e.g., phone number) to which the {@link Connection} is to connect. */ |