summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-05-13 01:54:53 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-05-13 01:54:53 +0000
commit823a39ef57dee41325205e43e687fe3bb80f7012 (patch)
tree6cf19910a1e7614bdc55a763d33c8a7c0558c687
parent057e5b8348786154dcf2872e2af78e7b9e12535c (diff)
parent80721ae50146fac98e130317b071841ba6d70463 (diff)
am 80721ae5: am 8ba6e006: Merge "More video related API fixes" into mnc-dev
* commit '80721ae50146fac98e130317b071841ba6d70463': 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);
}
/**