| Index: content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java b/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| index 2d72f2fe60c4061c09caca082eef0c3bcb48edb5..3d35612dd6f2eca19117c119ac9c5a959a9c2557 100644
|
| --- a/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java
|
| @@ -1186,7 +1186,7 @@ public class ImeTest {
|
| @Override
|
| public boolean isSatisfied() {
|
| return mRule.getSelectionPopupController().isPastePopupShowing()
|
| - && mRule.getSelectionPopupController().isInsertion();
|
| + && mRule.getSelectionPopupController().isInsertionForTesting();
|
| }
|
| });
|
|
|
| @@ -1197,7 +1197,7 @@ public class ImeTest {
|
| return !mRule.getSelectionPopupController().isPastePopupShowing();
|
| }
|
| });
|
| - Assert.assertFalse(mRule.getSelectionPopupController().isInsertion());
|
| + Assert.assertFalse(mRule.getSelectionPopupController().isInsertionForTesting());
|
| }
|
|
|
| @Test
|
|
|