Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1052)

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/input/ImeActivityTestRule.java

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Added inputType check in ImeTest Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/android/javatests/src/org/chromium/content/browser/input/ImeActivityTestRule.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/input/ImeActivityTestRule.java b/content/public/android/javatests/src/org/chromium/content/browser/input/ImeActivityTestRule.java
index 8ec3f26ae7f5d27085c2e60c2afce103d4181d34..f3ac2e8f0402e15f0013eb7b1820c08bfec3138a 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/input/ImeActivityTestRule.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/input/ImeActivityTestRule.java
@@ -197,6 +197,16 @@ class ImeActivityTestRule extends ContentShellActivityTestRule {
+ ", input type history: " + Arrays.deepToString(history);
}
+ void performEditorAction(final int action) {
+ final InputConnection inputConnection = mConnection;
+ ThreadUtils.runOnUiThreadBlocking(new Runnable() {
+ @Override
+ public void run() {
+ inputConnection.performEditorAction(action);
+ }
+ });
+ }
+
void performGo(TestCallbackHelperContainer testCallbackHelperContainer) throws Throwable {
final InputConnection inputConnection = mConnection;
final Callable<Void> callable = new Callable<Void>() {

Powered by Google App Engine
This is Rietveld 408576698