aboutsummaryrefslogtreecommitdiffstats
path: root/java-overridable
diff options
context:
space:
mode:
authorJatin Matani <jatinm@google.com>2014-11-14 00:50:32 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-14 00:50:32 +0000
commitdbb26ae5dfffb6bac33c6be2ecd69aafba0da3a6 (patch)
treea428848e32922383969c55515a9002dd3821352f /java-overridable
parent9a11b5f17cb9a73871eca821667f464d66964c7e (diff)
parentd60f9c046e6e0ce8d3b04f93506f553f22af6240 (diff)
downloadlatinime-dbb26ae5dfffb6bac33c6be2ecd69aafba0da3a6.tar.gz
latinime-dbb26ae5dfffb6bac33c6be2ecd69aafba0da3a6.tar.xz
latinime-dbb26ae5dfffb6bac33c6be2ecd69aafba0da3a6.zip
am d60f9c04: Merge "Implement UserHistoryDictionary for each user account."
* commit 'd60f9c046e6e0ce8d3b04f93506f553f22af6240': Implement UserHistoryDictionary for each user account.
Diffstat (limited to 'java-overridable')
-rw-r--r--java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java b/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java
index f80625644..43675682d 100644
--- a/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java
+++ b/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java
@@ -48,4 +48,10 @@ public final class ProductionFlags {
* When {@code true}, personal dictionary sync feature is ready to be enabled.
*/
public static final boolean ENABLE_PERSONAL_DICTIONARY_SYNC = ENABLE_ACCOUNT_SIGN_IN && false;
+
+ /**
+ * When {@code true}, the IME maintains per account {@link UserHistoryDictionary}.
+ */
+ public static final boolean ENABLE_PER_ACCOUNT_USER_HISTORY_DICTIONARY =
+ ENABLE_ACCOUNT_SIGN_IN && false;
}