| Index: Source/core/platform/chromium/PopupListBox.h
|
| diff --git a/Source/core/platform/chromium/PopupListBox.h b/Source/core/platform/chromium/PopupListBox.h
|
| index 2900b9ddb82e8c7fe70d34617facd57437257449..fcf09ffcadc9ef8f8eef109c5a089671337f15cd 100644
|
| --- a/Source/core/platform/chromium/PopupListBox.h
|
| +++ b/Source/core/platform/chromium/PopupListBox.h
|
| @@ -53,7 +53,9 @@ class IntRect;
|
| class PlatformKeyboardEvent;
|
| class PlatformMouseEvent;
|
| class PlatformGestureEvent;
|
| +#if ENABLE(TOUCH_EVENTS)
|
| class PlatformTouchEvent;
|
| +#endif
|
| class PlatformWheelEvent;
|
| class PopupMenuClient;
|
|
|
| @@ -130,7 +132,9 @@ public:
|
| virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&);
|
| virtual bool handleWheelEvent(const PlatformWheelEvent&);
|
| virtual bool handleKeyEvent(const PlatformKeyboardEvent&);
|
| +#if ENABLE(TOUCH_EVENTS)
|
| virtual bool handleTouchEvent(const PlatformTouchEvent&);
|
| +#endif
|
| virtual bool handleGestureEvent(const PlatformGestureEvent&);
|
|
|
| // ScrollView
|
|
|