summaryrefslogtreecommitdiffstats
path: root/src/com/android/contacts/common/CallUtil.java
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-07-28 14:18:21 -0700
committerAndrew Lee <anwlee@google.com>2014-07-28 15:19:28 -0700
commit779c7d9b6bd067bf431192e8f2a83a65fe9e3150 (patch)
treebcef41358bb45b3776ad76a4a1de37caafea6d00 /src/com/android/contacts/common/CallUtil.java
parent11a6e970b215cd289b964c4c39db85906501a6c9 (diff)
downloadpackages_apps_ContactsCommon-779c7d9b6bd067bf431192e8f2a83a65fe9e3150.tar.gz
packages_apps_ContactsCommon-779c7d9b6bd067bf431192e8f2a83a65fe9e3150.tar.bz2
packages_apps_ContactsCommon-779c7d9b6bd067bf431192e8f2a83a65fe9e3150.zip
Update uses of VideoCallProfile.VideoState.
Bug: 16629892 Change-Id: Ie6d04a2d8b10fa9047073ae4e8cb3841b4cfe824
Diffstat (limited to 'src/com/android/contacts/common/CallUtil.java')
-rw-r--r--src/com/android/contacts/common/CallUtil.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/contacts/common/CallUtil.java b/src/com/android/contacts/common/CallUtil.java
index bc25ec55..317a4229 100644
--- a/src/com/android/contacts/common/CallUtil.java
+++ b/src/com/android/contacts/common/CallUtil.java
@@ -90,7 +90,7 @@ public class CallUtil {
public static Intent getCallIntent(
Uri uri, String callOrigin, PhoneAccountHandle accountHandle) {
return getCallIntent(uri, callOrigin, accountHandle,
- VideoCallProfile.VIDEO_STATE_AUDIO_ONLY);
+ VideoCallProfile.VideoState.AUDIO_ONLY);
}
/**
@@ -98,7 +98,7 @@ public class CallUtil {
*/
public static Intent getVideoCallIntent(String number, String callOrigin) {
return getCallIntent(getCallUri(number), callOrigin, null,
- VideoCallProfile.VIDEO_STATE_BIDIRECTIONAL);
+ VideoCallProfile.VideoState.BIDIRECTIONAL);
}
/**
@@ -108,7 +108,7 @@ public class CallUtil {
public static Intent getVideoCallIntent(
String number, String callOrigin, PhoneAccountHandle accountHandle) {
return getCallIntent(getCallUri(number), callOrigin, accountHandle,
- VideoCallProfile.VIDEO_STATE_BIDIRECTIONAL);
+ VideoCallProfile.VideoState.BIDIRECTIONAL);
}
/**