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

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: Fixed the build break by replacing WebViewImpl object with WebViewBase 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..865781fdcd0d81ab63b9845052532c080b2c8d2e 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,10 @@ class ImeActivityTestRule extends ContentShellActivityTestRule {
+ ", input type history: " + Arrays.deepToString(history);
}
+ void performEditorAction(final int action) {
+ mConnection.performEditorAction(action);
+ }
+
void performGo(TestCallbackHelperContainer testCallbackHelperContainer) throws Throwable {
final InputConnection inputConnection = mConnection;
final Callable<Void> callable = new Callable<Void>() {
@@ -262,10 +266,6 @@ class ImeActivityTestRule extends ContentShellActivityTestRule {
Assert.assertEquals(compositionEnd, selection.second.end());
}
- void resetUpdateSelectionList() {
- mInputMethodManagerWrapper.getUpdateSelectionList().clear();
- }
-
void assertClipboardContents(final Activity activity, final String expectedContents) {
CriteriaHelper.pollUiThread(new Criteria() {
@Override
@@ -530,10 +530,10 @@ class ImeActivityTestRule extends ContentShellActivityTestRule {
*/
void focusElementAndWaitForStateUpdate(String id)
throws InterruptedException, TimeoutException {
- resetUpdateSelectionList();
+ resetAllStates();
focusElement(id);
waitAndVerifyUpdateSelection(0, 0, 0, -1, -1);
- resetUpdateSelectionList();
+ resetAllStates();
}
void focusElement(final String id) throws InterruptedException, TimeoutException {
@@ -570,7 +570,7 @@ class ImeActivityTestRule extends ContentShellActivityTestRule {
EditorInfo outAttrs) {
mTextInputTypeList.add(inputType);
mOutAttrs = outAttrs;
- return mFactory.initializeAndGet(view, imeAdapter, inputType, inputMode, inputFlags,
+ return mFactory.initializeAndGet(view, imeAdapter, inputType, inputFlags, inputMode,
selectionStart, selectionEnd, outAttrs);
}

Powered by Google App Engine
This is Rietveld 408576698