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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java

Issue 145953005: Expose more gestures to ContentViewCore.GestureStateListeners (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 6 years, 11 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: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
index 6c410eb49a5cb453937bafd1ef562720778491a0..f8706510de374eca83a599ea0c1f8aa41b010a6e 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
@@ -180,35 +180,4 @@ public class ContentViewClient {
return false;
}
- /**
- * Called when a fling start event is sent. Note: onFlingStopped() of the previous
- * fling may be called after onFlingStarted() of the current fling, so if the
- * client wants to manage the fling status, a counter should be used.
- */
- public void onFlingStarted() {
- }
-
- /**
- * Called when a fling is stopped, or a fling start event didn't trigger a fling.
- */
- public void onFlingStopped() {
- }
-
- /**
- * Called when a scroll gesture has begun.
- */
- public void onScrollBeginEvent() {
- }
-
- /**
- * Called when a scroll gesture has ended.
- */
- public void onScrollEndEvent() {
- }
-
- /**
- * Called when the scroll offsets or viewport dimensions may have changed.
- */
- public void onScrollOrViewportChanged() {
- }
}

Powered by Google App Engine
This is Rietveld 408576698