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

Unified Diff: Source/core/platform/chromium/FramelessScrollView.h

Issue 14280004: Revert removal of events (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
« no previous file with comments | « Source/core/platform/PlatformTouchPoint.h ('k') | Source/core/platform/chromium/PopupContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/chromium/FramelessScrollView.h
diff --git a/Source/core/platform/chromium/FramelessScrollView.h b/Source/core/platform/chromium/FramelessScrollView.h
index 945597c6d345d2d337dac36a85d3a49414bcc79a..8999e09ddd5303e71de30588fb3e159884cd51f5 100644
--- a/Source/core/platform/chromium/FramelessScrollView.h
+++ b/Source/core/platform/chromium/FramelessScrollView.h
@@ -39,7 +39,9 @@ namespace WebCore {
class PlatformGestureEvent;
class PlatformKeyboardEvent;
class PlatformMouseEvent;
+#if ENABLE(TOUCH_EVENTS)
class PlatformTouchEvent;
+#endif
class PlatformWheelEvent;
// A FramelessScrollView is a ScrollView that can be used to render custom
@@ -62,7 +64,9 @@ namespace WebCore {
virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) = 0;
virtual bool handleWheelEvent(const PlatformWheelEvent&) = 0;
virtual bool handleKeyEvent(const PlatformKeyboardEvent&) = 0;
+#if ENABLE(TOUCH_EVENTS)
virtual bool handleTouchEvent(const PlatformTouchEvent&) = 0;
+#endif
virtual bool handleGestureEvent(const PlatformGestureEvent&) = 0;
// ScrollableArea public methods:
« no previous file with comments | « Source/core/platform/PlatformTouchPoint.h ('k') | Source/core/platform/chromium/PopupContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698