Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionController.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionController.java b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionController.java |
| index 6234318ec73fae0d255163bce462adb6a5ece342..f8dfa985a559f4dc9424812de909f8116457279c 100644 |
| --- a/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionController.java |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionController.java |
| @@ -10,10 +10,15 @@ import org.chromium.base.VisibleForTesting; |
| import org.chromium.chrome.browser.ChromeActivity; |
| import org.chromium.chrome.browser.compositor.bottombar.OverlayPanel; |
| import org.chromium.chrome.browser.contextualsearch.ContextualSearchBlacklist.BlacklistReason; |
| +import org.chromium.chrome.browser.contextualsearch.action.ResolvedSearchAction; |
| +import org.chromium.chrome.browser.contextualsearch.action.SearchAction; |
| +import org.chromium.chrome.browser.contextualsearch.action.SearchActionListener; |
| +import org.chromium.chrome.browser.contextualsearch.gesture.SearchGestureHost; |
| import org.chromium.chrome.browser.preferences.ChromePreferenceManager; |
| import org.chromium.chrome.browser.tab.Tab; |
| import org.chromium.content.browser.ContentViewCore; |
| import org.chromium.content_public.browser.GestureStateListener; |
| +import org.chromium.content_public.browser.WebContents; |
| import org.chromium.ui.touch_selection.SelectionEventType; |
| import java.util.regex.Matcher; |
| @@ -22,8 +27,7 @@ import java.util.regex.Pattern; |
| /** |
| * Controls selection gesture interaction for Contextual Search. |
| */ |
| -public class ContextualSearchSelectionController { |
| - |
| +public class ContextualSearchSelectionController implements SearchGestureHost { |
| /** |
| * The type of selection made by the user. |
| */ |
| @@ -79,10 +83,19 @@ public class ContextualSearchSelectionController { |
| // The time of the most last scroll activity, or 0 if none. |
| private long mLastScrollTimeNs; |
| + // When the last tap gesture happened. |
| + private long mTapTimeNanoseconds; |
| + |
| // Tracks whether a Context Menu has just been shown and the UX has been dismissed. |
| // The selection may be unreliable until the next reset. See crbug.com/628436. |
| private boolean mIsContextMenuShown; |
| + // Set to true when we have identified that a pending tap has not been handled by Blink. |
| + private boolean mHasIdentifiedUnhandledTap; |
| + |
| + // The current Search action. |
| + private SearchAction mSearchAction; |
| + |
| private class ContextualSearchGestureStateListener extends GestureStateListener { |
| @Override |
| public void onScrollStarted(int scrollOffsetY, int scrollExtentY) { |
| @@ -113,6 +126,8 @@ public class ContextualSearchSelectionController { |
| // handles (have a long-press selection) and the tap was consumed. |
| if (!(consumed && mSelectionType == SelectionType.LONG_PRESS)) { |
| scheduleInvalidTapNotification(); |
| + |
| + if (mHasIdentifiedUnhandledTap) createSearchAction(); |
| } |
| } |
| } |
| @@ -338,6 +353,8 @@ public class ContextualSearchSelectionController { |
| mLastTapState = null; |
| mLastScrollTimeNs = 0; |
| mIsContextMenuShown = false; |
| + mHasIdentifiedUnhandledTap = false; |
| + mTapTimeNanoseconds = 0; |
| } |
| /** |
| @@ -360,6 +377,8 @@ public class ContextualSearchSelectionController { |
| /** |
| * Handles an unhandled tap gesture. |
| + * @param x The x coordinate. |
| + * @param y The y coordinate. |
| */ |
| void handleShowUnhandledTapUIIfNeeded(int x, int y) { |
| mWasTapGestureDetected = false; |
| @@ -367,37 +386,16 @@ public class ContextualSearchSelectionController { |
| // TODO(donnd): refactor to avoid needing a new handler API method as suggested by Pedro. |
| if (mSelectionType != SelectionType.LONG_PRESS) { |
| mWasTapGestureDetected = true; |
| - long tapTimeNanoseconds = System.nanoTime(); |
| - // TODO(donnd): add a policy method to get adjusted tap count. |
| - ChromePreferenceManager prefs = ChromePreferenceManager.getInstance(mActivity); |
| - int adjustedTapsSinceOpen = prefs.getContextualSearchTapCount() |
| - - prefs.getContextualSearchTapQuickAnswerCount(); |
| - TapSuppressionHeuristics tapHeuristics = |
| - new TapSuppressionHeuristics(this, mLastTapState, x, y, adjustedTapsSinceOpen); |
| - // TODO(donnd): Move to be called when the panel closes to work with states that change. |
| - tapHeuristics.logConditionState(); |
| - // Tell the manager what it needs in order to log metrics on whether the tap would have |
| - // been suppressed if each of the heuristics were satisfied. |
| - mHandler.handleMetricsForWouldSuppressTap(tapHeuristics); |
| + mTapTimeNanoseconds = System.nanoTime(); |
| + |
| + // NOTE(donnd): We first acknowledge that a unhandled tap was identified, but |
| + // we don't do anything now. Instead we'll wait for the onSingleTap() event to fire, |
| + // and only do something when an unhandled tap was identified. onSingleTap() will |
| + // always get fired, as opposed to showUnhandledTapUIIfNeeded(). |
| + mHasIdentifiedUnhandledTap = true; |
| + |
| mX = x; |
| mY = y; |
| - boolean shouldSuppressTap = tapHeuristics.shouldSuppressTap(); |
| - if (shouldSuppressTap) { |
| - mHandler.handleSuppressedTap(); |
| - } else { |
| - // TODO(donnd): Find a better way to determine that a navigation will be triggered |
| - // by the tap, or merge with other time-consuming actions like gathering surrounding |
| - // text or detecting page mutations. |
| - new Handler().postDelayed(new Runnable() { |
| - @Override |
| - public void run() { |
| - mHandler.handleValidTap(); |
| - } |
| - }, TAP_NAVIGATION_DETECTION_DELAY); |
| - } |
| - // Remember the tap state for subsequent tap evaluation. |
| - mLastTapState = |
| - new ContextualSearchTapState(x, y, tapTimeNanoseconds, shouldSuppressTap); |
| } else { |
| // Long press; reset last tap state. |
| mLastTapState = null; |
| @@ -406,9 +404,96 @@ public class ContextualSearchSelectionController { |
| } |
| /** |
| + * Processes a {@link SearchAction}. |
| + * This should be called when the associated {@code SearchAction} has built its context (by |
| + * gathering surrounding text if needed, etc). |
|
Theresa
2016/09/01 16:49:36
nit: ..., etc) but before a selection has been est
Donn Denman
2016/09/02 16:40:43
Done. Now reads: "This should be called when the
|
| + * @param searchAction The {@link SearchAction} for this Tap gesture. |
| + * @param x The x coordinate. |
| + * @param y The y coordinate. |
| + */ |
| + void processSearchAction(SearchAction searchAction, int x, int y) { |
| + // TODO(donnd): consider using the supplied searchAction, or remove if used from native! |
| + // TODO(donnd): add a policy method to get adjusted tap count. |
| + ChromePreferenceManager prefs = ChromePreferenceManager.getInstance(mActivity); |
| + int adjustedTapsSinceOpen = prefs.getContextualSearchTapCount() |
| + - prefs.getContextualSearchTapQuickAnswerCount(); |
| + TapSuppressionHeuristics tapHeuristics = |
| + new TapSuppressionHeuristics(this, mLastTapState, x, y, adjustedTapsSinceOpen); |
| + // TODO(donnd): Move to be called when the panel closes to work with states that change. |
| + tapHeuristics.logConditionState(); |
| + // Tell the manager what it needs in order to log metrics on whether the tap would have |
| + // been suppressed if each of the heuristics were satisfied. |
| + mHandler.handleMetricsForWouldSuppressTap(tapHeuristics); |
| + |
| + boolean shouldSuppressTap = tapHeuristics.shouldSuppressTap(); |
| + if (shouldSuppressTap) { |
| + mHandler.handleSuppressedTap(); |
| + } else { |
| + // TODO(donnd): Find a better way to determine that a navigation will be triggered |
| + // by the tap, or merge with other time-consuming actions like gathering surrounding |
| + // text or detecting page mutations. |
| + new Handler().postDelayed(new Runnable() { |
| + @Override |
| + public void run() { |
| + mHandler.handleValidTap(); |
| + } |
| + }, TAP_NAVIGATION_DETECTION_DELAY); |
| + } |
| + if (mTapTimeNanoseconds == 0) throw new RuntimeException("Tap time not set!"); |
| + // Remember the tap state for subsequent tap evaluation. |
| + mLastTapState = new ContextualSearchTapState(x, y, mTapTimeNanoseconds, shouldSuppressTap); |
| + } |
| + |
| + /** |
| + * Creates the current {@link SearchAction}. |
| + */ |
| + void createSearchAction() { |
|
pedro (no code reviews)
2016/08/31 22:38:22
The SearchAction should also be destroyed when a l
Donn Denman
2016/09/02 16:40:43
Done: Added a destroySearchAction to handleSelecti
|
| + if (mSearchAction != null) destroySearchAction(); |
|
Theresa
2016/09/01 16:49:36
nit: destroySearchAction() checks if mSearchAction
Donn Denman
2016/09/02 16:40:43
Done.
|
| + mSearchAction = new ResolvedSearchAction(new SearchActionListener() { |
| + |
| + @Override |
| + protected void onContextReady(SearchAction action) { |
| + processSearchAction(action, (int) mX, (int) mY); |
| + } |
| + }, this); |
| + |
| + mSearchAction.extractContext(); |
| + } |
| + |
| + /** |
| + * Destroys the current {@link SearchAction}. |
| + */ |
| + private void destroySearchAction() { |
| + if (mSearchAction == null) return; |
| + |
| + mSearchAction.destroyAction(); |
| + mSearchAction = null; |
| + } |
| + |
| + // ============================================================================================ |
| + // SearchGestureHost |
| + // ============================================================================================ |
| + |
| + @Override |
| + public WebContents getTabWebContents() { |
| + Tab currentTab = mActivity.getActivityTab(); |
| + return currentTab != null ? currentTab.getWebContents() : null; |
| + } |
| + |
| + @Override |
| + public void dismissGesture() { |
| + destroySearchAction(); |
| + } |
| + |
| + // ============================================================================================ |
| + // Utilities |
| + // ============================================================================================ |
| + |
| + /** |
| * @return The Base Page's {@link ContentViewCore}, or {@code null} if there is no current tab. |
| */ |
| ContentViewCore getBaseContentView() { |
| + // TODO(donnd): switch to using WebContents over ContentViewCore. |
| Tab currentTab = mActivity.getActivityTab(); |
| return currentTab != null ? currentTab.getContentViewCore() : null; |
| } |