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

Unified Diff: content/browser/renderer_host/input/tap_suppression_controller_client.h

Issue 43203004: Remove GestureEventFilter and clean up related bits assuming that we turn on Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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/browser/renderer_host/input/tap_suppression_controller_client.h
diff --git a/content/browser/renderer_host/input/tap_suppression_controller_client.h b/content/browser/renderer_host/input/tap_suppression_controller_client.h
deleted file mode 100644
index fcea0e1f58e274eddd936511eadce14b356881e7..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/input/tap_suppression_controller_client.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright 2013 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.
-
-#ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_TAP_SUPPRESSION_CONTROLLER_CLIENT_H_
-#define CONTENT_BROWSER_RENDERER_HOST_INPUT_TAP_SUPPRESSION_CONTROLLER_CLIENT_H_
-
-namespace content {
-
-// This class provides an interface for callbacks made by
-// TapSuppressionController.
-class TapSuppressionControllerClient {
- public:
- virtual ~TapSuppressionControllerClient() {}
-
- // Derived classes should implement this function to return the maximum time
- // they allow between a GestureFlingCancel and its corresponding tap down.
- virtual int MaxCancelToDownTimeInMs() = 0;
-
- // Derived classes should implement this function to return the maximum time
- // they allow between a single tap's down and up events.
- virtual int MaxTapGapTimeInMs() = 0;
-
- // Called whenever the deferred tap down (if saved) should be dropped totally.
- virtual void DropStashedTapDown() = 0;
-
- // Called whenever the deferred tap down (if saved) should be forwarded to the
- // renderer. The tap down should go back to normal path it was
- // on before being deferred.
- virtual void ForwardStashedTapDown() = 0;
-
- protected:
- TapSuppressionControllerClient() {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(TapSuppressionControllerClient);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_TAP_SUPPRESSION_CONTROLLER_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698