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

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/ContextualSearchClient.java

Issue 2703643004: [TTS] Add an ACK message to SelectWordAroundCaret. (Closed)
Patch Set: Changed to send the message on all platforms, not just Android. Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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.content.browser; 5 package org.chromium.content.browser;
6 6
7 /** 7 /**
8 * Interface to a client that implements Contextual Search handling for the cont ent layer. 8 * Interface to a client that implements Contextual Search handling for the cont ent layer.
9 */ 9 */
10 public interface ContextualSearchClient { 10 public interface ContextualSearchClient {
(...skipping 10 matching lines...) Expand all
21 * @param posYPix The y coordinate of the selection start handle. 21 * @param posYPix The y coordinate of the selection start handle.
22 */ 22 */
23 void onSelectionEvent(int eventType, float posXPix, float posYPix); 23 void onSelectionEvent(int eventType, float posXPix, float posYPix);
24 24
25 /** 25 /**
26 * Requests to show the UI for an unhandled tap, if needed. 26 * Requests to show the UI for an unhandled tap, if needed.
27 * @param x The x coordinate of the tap. 27 * @param x The x coordinate of the tap.
28 * @param y The y coordinate of the tap. 28 * @param y The y coordinate of the tap.
29 */ 29 */
30 void showUnhandledTapUIIfNeeded(int x, int y); 30 void showUnhandledTapUIIfNeeded(int x, int y);
31
32 /**
33 * Acknowledges that a selectWordAroundCaret action has completed with the g iven result.
34 * @param didSelect Whether a word was actually selected or not.
35 * @param startAdjust The adjustment to the selection start offset needed to select the word.
36 * This is typically a negative number (expressed in terms of number of characters).
37 * @param endAdjust The adjustment to the selection end offset needed to sel ect the word.
38 * This is typically a positive number (expressed in terms of number of characters).
39 */
40 void selectWordAroundCaretAck(boolean didSelect, int startAdjust, int endAdj ust);
31 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698