summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-05-13 02:06:09 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-05-13 02:06:09 +0000
commit1b9b071e529cc8360e7dc2cc7a11759b3ffc1e55 (patch)
tree60369b78720e4a4f1da415691501754694953b3a
parentb6e6d94811d944e55057dbb7ccbf187a5d35b825 (diff)
parent823a39ef57dee41325205e43e687fe3bb80f7012 (diff)
am 823a39ef: am 80721ae5: am 8ba6e006: Merge "More video related API fixes" into mnc-dev
* commit '823a39ef57dee41325205e43e687fe3bb80f7012': More video related API fixes
-rw-r--r--src/com/android/dialer/util/CallIntentUtil.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/dialer/util/CallIntentUtil.java b/src/com/android/dialer/util/CallIntentUtil.java
index 2d9fef3d6..fac26f7a0 100644
--- a/src/com/android/dialer/util/CallIntentUtil.java
+++ b/src/com/android/dialer/util/CallIntentUtil.java
@@ -87,7 +87,7 @@ public class CallIntentUtil {
public static Intent getCallIntent(
Uri uri, String callOrigin, PhoneAccountHandle accountHandle) {
return getCallIntent(uri, callOrigin, accountHandle,
- VideoProfile.VideoState.AUDIO_ONLY);
+ VideoProfile.STATE_AUDIO_ONLY);
}
/**
@@ -95,7 +95,7 @@ public class CallIntentUtil {
*/
public static Intent getVideoCallIntent(String number, String callOrigin) {
return getCallIntent(CallUtil.getCallUri(number), callOrigin, null,
- VideoProfile.VideoState.BIDIRECTIONAL);
+ VideoProfile.STATE_BIDIRECTIONAL);
}
/**
@@ -105,7 +105,7 @@ public class CallIntentUtil {
public static Intent getVideoCallIntent(
String number, String callOrigin, PhoneAccountHandle accountHandle) {
return getCallIntent(CallUtil.getCallUri(number), callOrigin, accountHandle,
- VideoProfile.VideoState.BIDIRECTIONAL);
+ VideoProfile.STATE_BIDIRECTIONAL);
}
/**