aboutsummaryrefslogtreecommitdiffstats
path: root/java-overridable/src
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2014-08-22 09:35:57 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-08-22 09:35:57 +0000
commitbf55d9f0e694202bbe11ddbf985fa9f6729acc25 (patch)
treeebb57c8ff48092d874c8399e289c8b1d6666376c /java-overridable/src
parent901964eb811b0711ed6381cf0c286dbcd6b9fd16 (diff)
parenteb99b461f03a48317598289ab12ea30a617c537c (diff)
downloadlatinime-bf55d9f0e694202bbe11ddbf985fa9f6729acc25.tar.gz
latinime-bf55d9f0e694202bbe11ddbf985fa9f6729acc25.tar.xz
latinime-bf55d9f0e694202bbe11ddbf985fa9f6729acc25.zip
am eb99b461: am 96db9222: am cabb66e9: follow-up to API change in I4a577bfd02b37b
* commit 'eb99b461f03a48317598289ab12ea30a617c537c': follow-up to API change in I4a577bfd02b37b
Diffstat (limited to 'java-overridable/src')
-rw-r--r--java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java17
1 files changed, 4 insertions, 13 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 461c226a1..5ab126486 100644
--- a/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java
+++ b/java-overridable/src/com/android/inputmethod/latin/define/ProductionFlags.java
@@ -24,23 +24,14 @@ public final class ProductionFlags {
public static final boolean IS_HARDWARE_KEYBOARD_SUPPORTED = false;
/**
- * When true, enable {@link InputMethodService#onUpdateCursorAnchorInfo} callback via
- * {@link InputConnection#requestCursorAnchorInfo}. This flag has no effect in API Level 20
- * and prior. In general, this callback provides more detailed positional information,
- * even though an explicit support is required by the editor.
+ * When true, enable {@link InputMethodService#onUpdateCursorAnchorInfo} callback via
+ * {@link InputConnection#requestUpdateCursorAnchorInfo}. This flag has no effect in API
+ * Level 20 and prior. In general, this callback provides detailed positional information,
+ * even though an explicit support is required by the editor.
*/
public static final boolean ENABLE_CURSOR_ANCHOR_INFO_CALLBACK = true;
/**
- * When true, enable {@link InputMethodService#onUpdateCursor} callback via
- * {@link InputConnection#requestCursorAnchorInfo}. Although this callback has been available
- * since API Level 3, the callback has never been used until API Level 20. Thus it may or may
- * not work well as expected. Should rely on {@link InputMethodService#onUpdateCursorAnchorInfo}
- * whenever possible since it is supposed to be more reliable and accurate.
- */
- public static final boolean ENABLE_CURSOR_RECT_CALLBACK = false;
-
- /**
* Include all suggestions from all dictionaries in {@link SuggestedWords#mRawSuggestions}.
*/
public static final boolean INCLUDE_RAW_SUGGESTIONS = false;