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

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

Issue 1278593004: Introduce ThreadedInputConnection behind a switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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/ContentViewCoreInputConnectionTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java
index 5243610edf36b95bda3179316f7d0eb992c49462..62949167466b8ce18ecb81f426896df0a7ef76d9 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/ContentViewCoreInputConnectionTest.java
@@ -7,7 +7,7 @@ package org.chromium.content.browser;
import android.test.suitebuilder.annotation.SmallTest;
import android.view.inputmethod.EditorInfo;
-import org.chromium.content.browser.input.AdapterInputConnection;
+import org.chromium.content.browser.input.ChromiumBaseInputConnection;
import org.chromium.content.browser.input.ImeAdapter;
import org.chromium.content.browser.input.InputMethodManagerWrapper;
import org.chromium.content.browser.test.util.TestInputMethodManagerWrapper;
@@ -54,7 +54,7 @@ public class ContentViewCoreInputConnectionTest extends ContentShellTestBase {
EditorInfo info = new EditorInfo();
mContentViewCore.onCreateInputConnection(info);
- AdapterInputConnection adapter = mContentViewCore.getAdapterInputConnectionForTest();
+ ChromiumBaseInputConnection adapter = mContentViewCore.getInputConnectionForTest();
adapter.updateState("Is this text restored?", 0, 0, 0, 0, true);
String text = mContentViewCore.getEditableForTest().toString();

Powered by Google App Engine
This is Rietveld 408576698