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

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

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 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_staging/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionHandler.java
diff --git a/chrome/android/java_staging/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionHandler.java b/chrome/android/java_staging/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionHandler.java
new file mode 100644
index 0000000000000000000000000000000000000000..7bf5bee4362c389203fa5d4febc73c68a2e85b53
--- /dev/null
+++ b/chrome/android/java_staging/src/org/chromium/chrome/browser/contextualsearch/ContextualSearchSelectionHandler.java
@@ -0,0 +1,46 @@
+// Copyright 2015 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.contextualsearch.ContextualSearchSelectionController.SelectionType;
+
+/**
+ * Defines the interface between a {@link ContextualSearchSelectionController} and the code that
+ * handles callbacks.
+ */
+interface ContextualSearchSelectionHandler {
+ /**
+ * Handle a scroll event on the base page.
+ */
+ public void handleScroll();
+
+ /**
+ * Handle a valid tap gesture on the base page.
+ */
+ public void handleValidTap();
+
+ /**
+ * Handle an invalid tap gesture on the base page.
+ */
+ public void handleInvalidTap();
+
+ /**
+ * Handle a new selection of the given type, created at the given x,y position.
+ */
+ public void handleSelection(String selection, SelectionType type, float x, float y);
+
+ /**
+ * Handle a modification to the selection, done at the given x,y position.
+ * @param selection The new selection.
+ * @param x The x position of the adjustment.
+ * @param y The y position of the adjustment.
+ */
+ public void handleSelectionModification(String selection, float x, float y);
+
+ /**
+ * Called when the selection is cleared.
+ */
+ public void onClearSelection();
+}

Powered by Google App Engine
This is Rietveld 408576698