| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef FramelessScrollView_h | 5 #ifndef FramelessScrollView_h |
| 6 #define FramelessScrollView_h | 6 #define FramelessScrollView_h |
| 7 | 7 |
| 8 #include "FrameView.h" | 8 #include "FrameView.h" |
| 9 | 9 |
| 10 namespace WebCore { | 10 namespace WebCore { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 virtual bool handleMouseDownEvent(const PlatformMouseEvent&) = 0; | 29 virtual bool handleMouseDownEvent(const PlatformMouseEvent&) = 0; |
| 30 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) = 0; | 30 virtual bool handleMouseMoveEvent(const PlatformMouseEvent&) = 0; |
| 31 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) = 0; | 31 virtual bool handleMouseReleaseEvent(const PlatformMouseEvent&) = 0; |
| 32 virtual bool handleWheelEvent(const PlatformWheelEvent&) = 0; | 32 virtual bool handleWheelEvent(const PlatformWheelEvent&) = 0; |
| 33 virtual bool handleKeyEvent(const PlatformKeyboardEvent&) = 0; | 33 virtual bool handleKeyEvent(const PlatformKeyboardEvent&) = 0; |
| 34 }; | 34 }; |
| 35 } | 35 } |
| 36 | 36 |
| 37 #endif // FramelessScrollView_h | 37 #endif // FramelessScrollView_h |
| 38 | 38 |
| OLD | NEW |