aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/Dictionary.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-04-17 19:41:20 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-17 19:41:20 -0700
commit7b81296f81894618991879defe90260c4a4430e8 (patch)
treec63be9b78570529cad6cb8bf49297ed5d4f836c2 /java/src/com/android/inputmethod/latin/Dictionary.java
parentfda69c44393698306341c334af2541e72774280e (diff)
parentcb633e37794adf59dd6ce1df97e3d5db02da6784 (diff)
downloadlatinime-7b81296f81894618991879defe90260c4a4430e8.tar.gz
latinime-7b81296f81894618991879defe90260c4a4430e8.tar.xz
latinime-7b81296f81894618991879defe90260c4a4430e8.zip
am cb633e37: am 91bcf5eb: Merge "Restart suggestions when the cursor moves."
* commit 'cb633e37794adf59dd6ce1df97e3d5db02da6784': Restart suggestions when the cursor moves.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Dictionary.java')
-rw-r--r--java/src/com/android/inputmethod/latin/Dictionary.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/Dictionary.java b/java/src/com/android/inputmethod/latin/Dictionary.java
index ff3d83fad..9691fa231 100644
--- a/java/src/com/android/inputmethod/latin/Dictionary.java
+++ b/java/src/com/android/inputmethod/latin/Dictionary.java
@@ -37,6 +37,8 @@ public abstract class Dictionary {
public static final String TYPE_USER = "user";
// User history dictionary internal to LatinIME.
public static final String TYPE_USER_HISTORY = "history";
+ // Spawned by resuming suggestions. Comes from a span that was in the TextView.
+ public static final String TYPE_RESUMED = "resumed";
protected final String mDictType;
public Dictionary(final String dictType) {