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

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

Issue 2703473002: [TTS] Extract tapped text before showing UI. (Closed)
Patch Set: Moved handleHideContextualSearch into hideContextualSearchUI, and updated comments in response to T… 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchInternalStateHandler.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchInternalStateHandler.java b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchInternalStateHandler.java
new file mode 100644
index 0000000000000000000000000000000000000000..8151381908bed71672bc3e701bc20544c175effe
--- /dev/null
+++ b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchInternalStateHandler.java
@@ -0,0 +1,63 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.chrome.browser.contextualsearch;
+
+import org.chromium.chrome.browser.compositor.bottombar.OverlayPanel.StateChangeReason;
+
+/**
+ * An interface for driving operations in the Contextual Search Manager's internal state by the
+ * {@link ContextualSearchInternalStateController} class.
+ */
+public interface ContextualSearchInternalStateHandler {
+ /**
+ * Hides the Contextual Search user interface.
+ * {@See ContextualSearchInternalStateController#InternalState#IDLE}.
+ */
+ void hideContextualSearchUi(StateChangeReason reason);
+
+ /**
+ * Shows the Contextual Search user interface for a Tap.
+ * {@See ContextualSearchInternalStateController#InternalState#SHOW_FULL_TAP_UI}.
+ */
+ void showContextualSearchTapUi();
+
+ /**
+ * Shows the Contextual Search user interface for a Long-press.
+ * {@See ContextualSearchInternalStateController#InternalState#SHOWING_LONGPRESS_SEARCH}.
+ */
+ void showContextualSearchLongpressUi();
+
+ /**
+ * Gathers text surrounding the current selection, which may have been created by either a Tap
+ * or a Long-press gesture.
+ * {@See ContextualSearchInternalStateController#InternalState#GATHERING_SURROUNDINGS}.
+ */
+ void gatherSurroundingText();
+
+ /**
+ * Starts the process of deciding if we'll suppress the current gesture or not.
+ * {@See ContextualSearchInternalStateController#InternalState#DECIDING_SUPPRESSION}.
+ */
+ void decideSuppression();
+
+ /**
+ * Starts the process of selecting a word around the current caret.
+ * {@See ContextualSearchInternalStateController#InternalState#START_SHOWING_TAP_UI}.
+ */
+ void startShowingTapUi();
+
+ /**
+ * Waits to see if a Tap gesture will be made when a previous Tap was recognized.
+ * {@See
+ * ContextualSearchInternalStateController#InternalState#WAITING_FOR_POSSIBLE_TAP_NEAR_PREVIOUS}
+ */
+ void waitForPossibleTapNearPrevious();
+
+ /**
+ * Starts a Resolve request to our server for the best Search Term.
+ * {@See ContextualSearchInternalStateController#InternalState#RESOLVING}.
+ */
+ void resolveSearchTerm();
+}

Powered by Google App Engine
This is Rietveld 408576698