summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-10-27 17:21:27 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-10-27 17:21:27 +0000
commit4499718cc171a6c79e03fc53e139efaf4d8ba6f8 (patch)
treec830e73232470fc7498ffe3853c0428274e2194f /java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java
parentf60c5384f34660ae03ae3c15183980dfb8219ba9 (diff)
parent5d8ed9309625302dee3407b320a52f2b7f30227f (diff)
Merge changes I6e17c1cc,If00f7e91,Ia89d5d85
* changes: Fix HOLD option not displayed in voice calls in CDMA + GSM. Use string concatenation for CREATE_TABLE_SQL instead of StringBuilder() Move the functionality of DialerUtils#getDefaultSharedPreferenceForDeviceProtectedStorageContext(Context) to StorageComponent.
Diffstat (limited to 'java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java')
-rw-r--r--java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java b/java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java
index 94cf893f0..2ed434660 100644
--- a/java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java
+++ b/java/com/android/incallui/answer/impl/hint/AnswerHintFactory.java
@@ -25,7 +25,7 @@ import android.support.annotation.VisibleForTesting;
import com.android.dialer.common.Assert;
import com.android.dialer.common.LogUtil;
import com.android.dialer.configprovider.ConfigProviderBindings;
-import com.android.dialer.util.DialerUtils;
+import com.android.dialer.storage.StorageComponent;
import com.android.incallui.util.AccessibilityUtil;
/**
@@ -72,8 +72,7 @@ public class AnswerHintFactory {
}
public static void increaseAnsweredCount(Context context) {
- SharedPreferences sharedPreferences =
- DialerUtils.getDefaultSharedPreferenceForDeviceProtectedStorageContext(context);
+ SharedPreferences sharedPreferences = StorageComponent.get(context).unencryptedSharedPrefs();
int answeredCount = sharedPreferences.getInt(ANSWERED_COUNT_PREFERENCE_KEY, 0);
sharedPreferences.edit().putInt(ANSWERED_COUNT_PREFERENCE_KEY, answeredCount + 1).apply();
}
@@ -92,7 +91,8 @@ public class AnswerHintFactory {
// If the user has gone through the process a few times we can assume they have learnt the
// method.
int answeredCount =
- DialerUtils.getDefaultSharedPreferenceForDeviceProtectedStorageContext(context)
+ StorageComponent.get(context)
+ .unencryptedSharedPrefs()
.getInt(ANSWERED_COUNT_PREFERENCE_KEY, 0);
long threshold =
ConfigProviderBindings.get(context).getLong(CONFIG_ANSWER_HINT_ANSWERED_THRESHOLD_KEY, 3);