aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/LatinIMEForTests.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-05-15 04:26:29 -0700
committerThe Android Automerger <android-build@android.com>2013-05-15 07:58:27 -0700
commitb1e37e4a478a577c59930767148e50f8f45af21f (patch)
treed18744d9e4048446a206c552d123d9e12d45e48e /tests/src/com/android/inputmethod/latin/LatinIMEForTests.java
parent25f0c8089eecfcded7f41c66453bd874ba92219a (diff)
downloadlatinime-b1e37e4a478a577c59930767148e50f8f45af21f.tar.gz
latinime-b1e37e4a478a577c59930767148e50f8f45af21f.tar.xz
latinime-b1e37e4a478a577c59930767148e50f8f45af21f.zip
am f1dcf725: Merge "Don\'t process recorrection or resets when not shown"
* commit 'f1dcf725061b3e61e40540566a5385cf4934f424': Don't process recorrection or resets when not shown
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/LatinIMEForTests.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/LatinIMEForTests.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/src/com/android/inputmethod/latin/LatinIMEForTests.java b/tests/src/com/android/inputmethod/latin/LatinIMEForTests.java
new file mode 100644
index 000000000..e47c55736
--- /dev/null
+++ b/tests/src/com/android/inputmethod/latin/LatinIMEForTests.java
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.inputmethod.latin;
+
+public class LatinIMEForTests extends LatinIME {
+ @Override
+ public boolean isInputViewShown() {
+ return true;
+ }
+}