diff options
author | Yorke Lee <yorkelee@google.com> | 2015-04-15 16:33:43 -0700 |
---|---|---|
committer | Yorke Lee <yorkelee@google.com> | 2015-04-15 16:33:43 -0700 |
commit | 1f8ae35c521d096d3933f5c0fcf937bbc2cb0ffd (patch) | |
tree | b26d4978ee2280de491f019e61cd5215a95d8713 | |
parent | e4c217ab2dd63b3d93a3e45d45ea67eabb2d3d35 (diff) |
Don't use internal resources in InCallUI
Bug: 20090407
Change-Id: Id0e90507fe9d45545ed3774521bac68eb0bda8a7
-rw-r--r-- | InCallUI/src/com/android/incallui/VideoCallPresenter.java | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/InCallUI/src/com/android/incallui/VideoCallPresenter.java b/InCallUI/src/com/android/incallui/VideoCallPresenter.java index 43eef4b50..33b7d54fa 100644 --- a/InCallUI/src/com/android/incallui/VideoCallPresenter.java +++ b/InCallUI/src/com/android/incallui/VideoCallPresenter.java @@ -35,14 +35,10 @@ import com.android.incallui.InCallPresenter.InCallStateListener; import com.android.incallui.InCallPresenter.IncomingCallListener; import com.android.incallui.InCallVideoCallListenerNotifier.SurfaceChangeListener; import com.android.incallui.InCallVideoCallListenerNotifier.VideoEventListener; -import com.android.internal.telephony.PhoneConstants; -import com.android.internal.telephony.TelephonyProperties; import com.google.common.base.Preconditions; import java.util.Objects; -import android.os.SystemProperties; - /** * Logic related to the {@link VideoCallFragment} and for managing changes to the video calling * surfaces based on other user interface events and incoming events from the @@ -662,9 +658,8 @@ public class VideoCallPresenter extends Presenter<VideoCallPresenter.VideoCallUi } private static boolean isSpeakerEnabledForVideoCalls() { - return (SystemProperties.getInt(TelephonyProperties.PROPERTY_VIDEOCALL_AUDIO_OUTPUT, - PhoneConstants.AUDIO_OUTPUT_DEFAULT) == - PhoneConstants.AUDIO_OUTPUT_ENABLE_SPEAKER); + // TODO: Make this a carrier configurable setting. For now this is always true. b/20090407 + return true; } private void enableCamera(VideoCall videoCall, boolean isCameraRequired) { |