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

Unified Diff: content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionFactoryTest.java

Issue 2523753003: Add inputmode to android ImeAdapater. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionFactoryTest.java
diff --git a/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionFactoryTest.java b/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionFactoryTest.java
index 8793a05500f1634d57a5c7e0582f4621b8475d1d..f217f384e530d8b1200652a283f336e62eee848a 100644
--- a/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionFactoryTest.java
+++ b/content/public/android/junit/src/org/chromium/content/browser/input/ThreadedInputConnectionFactoryTest.java
@@ -151,7 +151,7 @@ public class ThreadedInputConnectionFactoryTest {
@Override
public InputConnection call() throws Exception {
return mFactory.initializeAndGet(
- mContainerView, mImeAdapter, 1, 0, 0, 0, mEditorInfo);
+ mContainerView, mImeAdapter, 1, 0, 0, 0, 0, mEditorInfo);
}
};
when(mProxyView.onCreateInputConnection(any(EditorInfo.class))).thenAnswer(
@@ -193,7 +193,7 @@ public class ThreadedInputConnectionFactoryTest {
@Override
public void run() {
assertNull(mFactory.initializeAndGet(
- mContainerView, mImeAdapter, 1, 0, 0, 0, mEditorInfo));
+ mContainerView, mImeAdapter, 1, 0, 0, 0, 0, mEditorInfo));
}
});
}

Powered by Google App Engine
This is Rietveld 408576698