am 8ba6e006: Merge "More video related API fixes" into mnc-dev
* commit '8ba6e006159a887671862c314e94487c0fd5e8e0':
More video related API fixes
diff --git a/src/com/android/dialer/util/CallIntentUtil.java b/src/com/android/dialer/util/CallIntentUtil.java
index 2d9fef3..fac26f7 100644
--- a/src/com/android/dialer/util/CallIntentUtil.java
+++ b/src/com/android/dialer/util/CallIntentUtil.java
@@ -87,7 +87,7 @@
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 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 static Intent getVideoCallIntent(
String number, String callOrigin, PhoneAccountHandle accountHandle) {
return getCallIntent(CallUtil.getCallUri(number), callOrigin, accountHandle,
- VideoProfile.VideoState.BIDIRECTIONAL);
+ VideoProfile.STATE_BIDIRECTIONAL);
}
/**