aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2014-07-21 18:28:37 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-21 18:28:37 +0000
commite2ceff04582791af2d25facfa5124b44ea95de3b (patch)
treea66ed2db2714eecd44cf3f9bad2d0f59b2e9e763 /java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
parent4deb5dc9a209b2e2ce9847a144f3f84008ea3d53 (diff)
parent3f513f107ef0754da2b1c704167325151ce9b7ea (diff)
downloadlatinime-e2ceff04582791af2d25facfa5124b44ea95de3b.tar.gz
latinime-e2ceff04582791af2d25facfa5124b44ea95de3b.tar.xz
latinime-e2ceff04582791af2d25facfa5124b44ea95de3b.zip
am 3f513f10: Enable InputMethodService#onUpdateCursor behind the flag
* commit '3f513f107ef0754da2b1c704167325151ce9b7ea': Enable InputMethodService#onUpdateCursor behind the flag
Diffstat (limited to 'java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java')
-rw-r--r--java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java b/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
index cbae6952c..48047ddbf 100644
--- a/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
+++ b/java/src/com/android/inputmethod/compat/InputMethodServiceCompatUtils.java
@@ -17,7 +17,6 @@
package com.android.inputmethod.compat;
import android.inputmethodservice.InputMethodService;
-import com.android.inputmethod.latin.define.ProductionFlags;
import java.lang.reflect.Method;
@@ -35,30 +34,4 @@ public final class InputMethodServiceCompatUtils {
return (Boolean)CompatUtils.invoke(ims, false /* defaultValue */,
METHOD_enableHardwareAcceleration);
}
-
- public static void setCursorAnchorMonitorMode(final InputMethodService ims, final int mode) {
- if (ProductionFlags.USES_CURSOR_ANCHOR_MONITOR) {
- ExperimentalAPIUtils.setCursorAnchorMonitorMode(ims, mode);
- }
- }
-
- /*
- * For unreleased APIs. ProGuard will strip this class entirely, unless used explicitly.
- */
- private static final class ExperimentalAPIUtils {
- // Note that {@link InputMethodManager#setCursorAnchorMonitorMode} is not yet available as
- // an official API as of API level 19 (Build.VERSION_CODES.KITKAT).
- private static final Method METHOD_setCursorAnchorMonitorMode = CompatUtils.getMethod(
- InputMethodService.class, "setCursorAnchorMonitorMode", int.class);
-
- private ExperimentalAPIUtils() {
- // This utility class is not publicly instantiable.
- }
-
- public static void setCursorAnchorMonitorMode(final InputMethodService ims,
- final int mode) {
- CompatUtils.invoke(ims, null /* defaultValue */,
- METHOD_setCursorAnchorMonitorMode, mode);
- }
- }
}