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

Side by Side 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: comments 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.contextualsearch; 5 package org.chromium.chrome.browser.contextualsearch;
6 6
7 import static org.chromium.base.test.util.Restriction.RESTRICTION_TYPE_NON_LOW_E ND_DEVICE; 7 import static org.chromium.base.test.util.Restriction.RESTRICTION_TYPE_NON_LOW_E ND_DEVICE;
8 8
9 import android.content.Context; 9 import android.content.Context;
10 import android.net.Uri; 10 import android.net.Uri;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 /** 83 /**
84 * ContextualSearchManager wrapper that prevents network requests and most n ative calls. 84 * ContextualSearchManager wrapper that prevents network requests and most n ative calls.
85 */ 85 */
86 private static class ContextualSearchManagerWrapper extends ContextualSearch Manager { 86 private static class ContextualSearchManagerWrapper extends ContextualSearch Manager {
87 public ContextualSearchManagerWrapper(ChromeActivity activity, 87 public ContextualSearchManagerWrapper(ChromeActivity activity,
88 WindowAndroid windowAndroid) { 88 WindowAndroid windowAndroid) {
89 super(activity, windowAndroid, null); 89 super(activity, windowAndroid, null);
90 setSelectionController(new MockCSSelectionController(activity, this) ); 90 setSelectionController(new MockCSSelectionController(activity, this) );
91 ContentViewCore contentView = getSelectionController().getBaseConten tView(); 91 ContentViewCore contentView = getSelectionController().getBaseConten tView();
92 contentView.setSelectionPopupControllerForTesting( 92 contentView.setSelectionPopupControllerForTesting(new SelectionPopup Controller(
93 new SelectionPopupController(activity, null, null, null, 93 activity, null, null, null, contentView.getRenderCoordinates ()));
94 contentView.getRenderCoordinates(), null));
95 contentView.setSelectionClient(this); 94 contentView.setSelectionClient(this);
96 MockContextualSearchPolicy policy = new MockContextualSearchPolicy() ; 95 MockContextualSearchPolicy policy = new MockContextualSearchPolicy() ;
97 setContextualSearchPolicy(policy); 96 setContextualSearchPolicy(policy);
98 mTranslateController = new MockedCSTranslateController(activity, pol icy, null); 97 mTranslateController = new MockedCSTranslateController(activity, pol icy, null);
99 } 98 }
100 99
101 @Override 100 @Override
102 public void startSearchTermResolutionRequest(String selection) { 101 public void startSearchTermResolutionRequest(String selection) {
103 // Skip native calls and immediately "resolve" the search term. 102 // Skip native calls and immediately "resolve" the search term.
104 onSearchTermResolutionResponse( 103 onSearchTermResolutionResponse(
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 .equals("text")); 262 .equals("text"));
264 263
265 // Fake tap on non-text. 264 // Fake tap on non-text.
266 mockTapEmptySpace(); 265 mockTapEmptySpace();
267 266
268 assertTrue(mPanelManager.getRequestPanelShowCount() == 1); 267 assertTrue(mPanelManager.getRequestPanelShowCount() == 1);
269 assertTrue(mPanelManager.getPanelHideCount() == 1); 268 assertTrue(mPanelManager.getPanelHideCount() == 1);
270 assertTrue(mContextualSearchManager.getSelectionController().getSelected Text() == null); 269 assertTrue(mContextualSearchManager.getSelectionController().getSelected Text() == null);
271 } 270 }
272 } 271 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698