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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchTapEventTest.java

Issue 2752113005: Let ImeAdapterAndroid have the same lifecycle as its Java peer (Closed)
Patch Set: background rwhva Created 3 years, 9 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: chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchTapEventTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchTapEventTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchTapEventTest.java
index 8978f83da8c74e14ea100c98cdd0dce2e11548a3..e452e88e1bd10d79f043a531f377dc30b3a7b1c8 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchTapEventTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchTapEventTest.java
@@ -89,9 +89,8 @@ public class ContextualSearchTapEventTest extends ChromeActivityTestCaseBase<Chr
super(activity, windowAndroid, null);
setSelectionController(new MockCSSelectionController(activity, this));
ContentViewCore contentView = getSelectionController().getBaseContentView();
- contentView.setSelectionPopupControllerForTesting(
- new SelectionPopupController(activity, null, null, null,
- contentView.getRenderCoordinates(), null));
+ contentView.setSelectionPopupControllerForTesting(new SelectionPopupController(
+ activity, null, null, null, contentView.getRenderCoordinates()));
contentView.setSelectionClient(this);
MockContextualSearchPolicy policy = new MockContextualSearchPolicy();
setContextualSearchPolicy(policy);

Powered by Google App Engine
This is Rietveld 408576698