diff options
author | Sailesh Nepal <sail@google.com> | 2014-07-14 12:03:05 -0700 |
---|---|---|
committer | Sailesh Nepal <sail@google.com> | 2014-07-14 23:23:11 +0000 |
commit | 914f56efb034de18257ce298b893e8329d92b2d5 (patch) | |
tree | 2e74f6009836dd04ff3e6900308f647021801c5c /src/com | |
parent | 809dd0364fd24bec6e6e3c93449fbb4c7f7f61ee (diff) | |
download | packages_apps_ContactsCommon-914f56efb034de18257ce298b893e8329d92b2d5.tar.gz packages_apps_ContactsCommon-914f56efb034de18257ce298b893e8329d92b2d5.tar.bz2 packages_apps_ContactsCommon-914f56efb034de18257ce298b893e8329d92b2d5.zip |
Update EXTRA_PHONE_ACCOUNT do not merge
Change-Id: I2e40c5c64c0d242dc41b680943d7e9209142db5b
(cherry picked from commit 47c4b0754c22a6d3601a84ea66419b97ae642550)
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/android/contacts/common/CallUtil.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/contacts/common/CallUtil.java b/src/com/android/contacts/common/CallUtil.java index 2bad490f..0723805c 100644 --- a/src/com/android/contacts/common/CallUtil.java +++ b/src/com/android/contacts/common/CallUtil.java @@ -20,7 +20,6 @@ import android.content.Intent; import android.net.Uri; import android.telecomm.PhoneAccount; import android.telecomm.TelecommConstants; -import android.telecomm.TelecommManager; import android.telecomm.VideoCallProfile; import com.android.contacts.common.util.PhoneNumberHelper; @@ -122,7 +121,7 @@ public class CallUtil { intent.putExtra(PhoneConstants.EXTRA_CALL_ORIGIN, callOrigin); } if (account != null) { - intent.putExtra(TelecommManager.EXTRA_PHONE_ACCOUNT, account); + intent.putExtra(TelecommConstants.EXTRA_PHONE_ACCOUNT, account); } return intent; |