summaryrefslogtreecommitdiffstats
path: root/java/com/android/incallui/videotech/utils
diff options
context:
space:
mode:
authorEric Erfanian <erfanian@google.com>2017-03-24 09:31:16 -0700
committerEric Erfanian <erfanian@google.com>2017-03-27 08:56:19 -0700
commit9050823ccf6f512e06ad65c8a741cb17cbc4a833 (patch)
treee454c9e0fa20b8384fa87d4e6309bb8b9e3aa2a4 /java/com/android/incallui/videotech/utils
parentdd9d50805f1b49dff1fe3787740393d726124cdb (diff)
downloadandroid_packages_apps_Dialer-9050823ccf6f512e06ad65c8a741cb17cbc4a833.tar.gz
android_packages_apps_Dialer-9050823ccf6f512e06ad65c8a741cb17cbc4a833.tar.bz2
android_packages_apps_Dialer-9050823ccf6f512e06ad65c8a741cb17cbc4a833.zip
Update AOSP Dialer source from internal google3 repository at
cl/151128062 Test: make, treehugger This CL updates the AOSP Dialer source with all the changes that have gone into the private google3 repository. This includes all the changes from cl/150756069 (3/21/2017) to cl/151128062 (3/24/2017). Notable this release: - Explicitly enumerate host and target dependencies. - Update proguard flag references. This goal of these drops is to keep the AOSP source in sync with the internal google3 repository. Currently these sync are done by hand with very minor modifications to the internal source code. See the Android.mk file for list of modifications. Our current goal is to do frequent drops (daily if possible) and eventually switched to an automated process. Bug: 33210202 36511925 Addresses 33210202 - Proguard support 36511925 - Compiler warnings when building against platform sdk Change-Id: I448ec3b3f2358886859cf7a4ef76a8fcef3244ae
Diffstat (limited to 'java/com/android/incallui/videotech/utils')
-rw-r--r--java/com/android/incallui/videotech/utils/SessionModificationState.java46
-rw-r--r--java/com/android/incallui/videotech/utils/VideoUtils.java60
2 files changed, 106 insertions, 0 deletions
diff --git a/java/com/android/incallui/videotech/utils/SessionModificationState.java b/java/com/android/incallui/videotech/utils/SessionModificationState.java
new file mode 100644
index 000000000..24b0ca369
--- /dev/null
+++ b/java/com/android/incallui/videotech/utils/SessionModificationState.java
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+package com.android.incallui.videotech.utils;
+
+import android.support.annotation.IntDef;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+/**
+ * Defines different states of session modify requests, which are used to upgrade to video, or
+ * downgrade to audio.
+ */
+@Retention(RetentionPolicy.SOURCE)
+@IntDef({
+ SessionModificationState.NO_REQUEST,
+ SessionModificationState.WAITING_FOR_UPGRADE_TO_VIDEO_RESPONSE,
+ SessionModificationState.REQUEST_FAILED,
+ SessionModificationState.RECEIVED_UPGRADE_TO_VIDEO_REQUEST,
+ SessionModificationState.UPGRADE_TO_VIDEO_REQUEST_TIMED_OUT,
+ SessionModificationState.UPGRADE_TO_VIDEO_REQUEST_FAILED,
+ SessionModificationState.REQUEST_REJECTED,
+ SessionModificationState.WAITING_FOR_RESPONSE
+})
+public @interface SessionModificationState {
+ int NO_REQUEST = 0;
+ int WAITING_FOR_UPGRADE_TO_VIDEO_RESPONSE = 1;
+ int REQUEST_FAILED = 2;
+ int RECEIVED_UPGRADE_TO_VIDEO_REQUEST = 3;
+ int UPGRADE_TO_VIDEO_REQUEST_TIMED_OUT = 4;
+ int UPGRADE_TO_VIDEO_REQUEST_FAILED = 5;
+ int REQUEST_REJECTED = 6;
+ int WAITING_FOR_RESPONSE = 7;
+}
diff --git a/java/com/android/incallui/videotech/utils/VideoUtils.java b/java/com/android/incallui/videotech/utils/VideoUtils.java
new file mode 100644
index 000000000..527654030
--- /dev/null
+++ b/java/com/android/incallui/videotech/utils/VideoUtils.java
@@ -0,0 +1,60 @@
+/*
+ * Copyright (C) 2015 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package com.android.incallui.videotech.utils;
+
+import android.content.Context;
+import android.content.pm.PackageManager;
+import android.support.annotation.NonNull;
+import android.support.v4.content.ContextCompat;
+import com.android.dialer.util.DialerUtils;
+
+public class VideoUtils {
+
+ private static final String PREFERENCE_CAMERA_ALLOWED_BY_USER = "camera_allowed_by_user";
+
+ public static boolean hasSentVideoUpgradeRequest(@SessionModificationState int state) {
+ return state == SessionModificationState.WAITING_FOR_UPGRADE_TO_VIDEO_RESPONSE
+ || state == SessionModificationState.UPGRADE_TO_VIDEO_REQUEST_FAILED
+ || state == SessionModificationState.REQUEST_REJECTED
+ || state == SessionModificationState.UPGRADE_TO_VIDEO_REQUEST_TIMED_OUT;
+ }
+
+ public static boolean hasReceivedVideoUpgradeRequest(@SessionModificationState int state) {
+ return state == SessionModificationState.RECEIVED_UPGRADE_TO_VIDEO_REQUEST;
+ }
+
+ public static boolean hasCameraPermissionAndAllowedByUser(@NonNull Context context) {
+ return isCameraAllowedByUser(context) && hasCameraPermission(context);
+ }
+
+ public static boolean hasCameraPermission(@NonNull Context context) {
+ return ContextCompat.checkSelfPermission(context, android.Manifest.permission.CAMERA)
+ == PackageManager.PERMISSION_GRANTED;
+ }
+
+ public static boolean isCameraAllowedByUser(@NonNull Context context) {
+ return DialerUtils.getDefaultSharedPreferenceForDeviceProtectedStorageContext(context)
+ .getBoolean(PREFERENCE_CAMERA_ALLOWED_BY_USER, false);
+ }
+
+ public static void setCameraAllowedByUser(@NonNull Context context) {
+ DialerUtils.getDefaultSharedPreferenceForDeviceProtectedStorageContext(context)
+ .edit()
+ .putBoolean(PREFERENCE_CAMERA_ALLOWED_BY_USER, true)
+ .apply();
+ }
+}