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

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: fix tests Created 3 years, 8 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 /** 82 /**
83 * ContextualSearchManager wrapper that prevents network requests and most n ative calls. 83 * ContextualSearchManager wrapper that prevents network requests and most n ative calls.
84 */ 84 */
85 private static class ContextualSearchManagerWrapper extends ContextualSearch Manager { 85 private static class ContextualSearchManagerWrapper extends ContextualSearch Manager {
86 public ContextualSearchManagerWrapper(ChromeActivity activity, 86 public ContextualSearchManagerWrapper(ChromeActivity activity,
87 WindowAndroid windowAndroid) { 87 WindowAndroid windowAndroid) {
88 super(activity, windowAndroid, null); 88 super(activity, windowAndroid, null);
89 setSelectionController(new MockCSSelectionController(activity, this) ); 89 setSelectionController(new MockCSSelectionController(activity, this) );
90 ContentViewCore contentView = getSelectionController().getBaseConten tView(); 90 ContentViewCore contentView = getSelectionController().getBaseConten tView();
91 contentView.setSelectionPopupControllerForTesting( 91 contentView.setSelectionPopupControllerForTesting(new SelectionPopup Controller(
92 new SelectionPopupController(activity, null, null, null, 92 activity, null, null, null, contentView.getRenderCoordinates ()));
93 contentView.getRenderCoordinates(), null));
94 contentView.setSelectionClient(this); 93 contentView.setSelectionClient(this);
95 MockContextualSearchPolicy policy = new MockContextualSearchPolicy() ; 94 MockContextualSearchPolicy policy = new MockContextualSearchPolicy() ;
96 setContextualSearchPolicy(policy); 95 setContextualSearchPolicy(policy);
97 mTranslateController = new MockedCSTranslateController(activity, pol icy, null); 96 mTranslateController = new MockedCSTranslateController(activity, pol icy, null);
98 } 97 }
99 98
100 @Override 99 @Override
101 public void startSearchTermResolutionRequest(String selection) { 100 public void startSearchTermResolutionRequest(String selection) {
102 // Skip native calls and immediately "resolve" the search term. 101 // Skip native calls and immediately "resolve" the search term.
103 onSearchTermResolutionResponse( 102 onSearchTermResolutionResponse(
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 .equals("text")); 268 .equals("text"));
270 269
271 // Fake tap on non-text. 270 // Fake tap on non-text.
272 mockTapEmptySpace(); 271 mockTapEmptySpace();
273 272
274 assertTrue(mPanelManager.getRequestPanelShowCount() == 1); 273 assertTrue(mPanelManager.getRequestPanelShowCount() == 1);
275 assertTrue(mPanelManager.getPanelHideCount() == 1); 274 assertTrue(mPanelManager.getPanelHideCount() == 1);
276 assertTrue(mContextualSearchManager.getSelectionController().getSelected Text() == null); 275 assertTrue(mContextualSearchManager.getSelectionController().getSelected Text() == null);
277 } 276 }
278 } 277 }
OLDNEW
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/tab/Tab.java ('k') | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698