summaryrefslogtreecommitdiffstats
path: root/src-N/com/android/dialer
diff options
context:
space:
mode:
authorNancy Chen <nancychen@google.com>2016-01-15 02:55:02 +0000
committerNancy Chen <nancychen@google.com>2016-01-15 02:55:02 +0000
commitf7e10f2ac8f2fd8999113e6d3bcb731c9a894b86 (patch)
treed6478e553604cbd844704d03d80708c0951bd23b /src-N/com/android/dialer
parent201e021fe24e36ae2d94eadd4701933dd099d309 (diff)
downloadandroid_packages_apps_Dialer-f7e10f2ac8f2fd8999113e6d3bcb731c9a894b86.tar.gz
android_packages_apps_Dialer-f7e10f2ac8f2fd8999113e6d3bcb731c9a894b86.tar.bz2
android_packages_apps_Dialer-f7e10f2ac8f2fd8999113e6d3bcb731c9a894b86.zip
Revert "Use telephony voicemail notification settings for vvm."
This reverts commit 201e021fe24e36ae2d94eadd4701933dd099d309. Change-Id: I9b8e9bc74d23cea7c668166d275033c8fddf52cf
Diffstat (limited to 'src-N/com/android/dialer')
-rw-r--r--src-N/com/android/dialer/calllog/VoicemailNotificationSettingsLookup.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/src-N/com/android/dialer/calllog/VoicemailNotificationSettingsLookup.java b/src-N/com/android/dialer/calllog/VoicemailNotificationSettingsLookup.java
deleted file mode 100644
index 4ca0c65e6..000000000
--- a/src-N/com/android/dialer/calllog/VoicemailNotificationSettingsLookup.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2016 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.dialer.calllog;
-
-import android.app.Notification;
-import android.content.ComponentName;
-import android.content.Context;
-import android.net.Uri;
-import android.telecom.PhoneAccountHandle;
-import android.telephony.TelephonyManager;
-
-import com.android.dialer.calllog.DefaultVoicemailNotifier.NewCall;
-
-/**
- * Class to do lookup for voicemail ringtone and vibration. On N and above, this will look up
- * voicemail notification settings from Telephony.
- */
-public class VoicemailNotificationSettingsLookup {
- public static Uri getVoicemailRingtoneUri(Context context, PhoneAccountHandle accountHandle) {
- return getTelephonyManager(context).getVoicemailRingtoneUri(accountHandle);
- }
-
- public static int getNotificationDefaults(Context context, PhoneAccountHandle accountHandle) {
- return getTelephonyManager(context).isVoicemailVibrationEnabled(accountHandle)
- ? Notification.DEFAULT_VIBRATE : 0;
- }
-
- private static TelephonyManager getTelephonyManager(Context context) {
- return (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
- }
-}