OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 17 matching lines...) Expand all Loading... |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebInputEventConversion_h | 31 #ifndef WebInputEventConversion_h |
32 #define WebInputEventConversion_h | 32 #define WebInputEventConversion_h |
33 | 33 |
34 #include "platform/PlatformGestureEvent.h" | 34 #include "platform/PlatformGestureEvent.h" |
35 #include "platform/PlatformMouseEvent.h" | 35 #include "platform/PlatformMouseEvent.h" |
36 #include "platform/PlatformTouchEvent.h" | 36 #include "platform/PlatformTouchEvent.h" |
37 #include "platform/PlatformWheelEvent.h" | 37 #include "platform/PlatformWheelEvent.h" |
38 #include "public/web/WebInputEvent.h" | 38 #include "public/platform/WebGestureEvent.h" |
| 39 #include "public/platform/WebInputEvent.h" |
39 #include "web/WebExport.h" | 40 #include "web/WebExport.h" |
40 #include "wtf/Compiler.h" | 41 #include "wtf/Compiler.h" |
41 | 42 |
42 namespace blink { | 43 namespace blink { |
43 | 44 |
44 class GestureEvent; | 45 class GestureEvent; |
45 class KeyboardEvent; | 46 class KeyboardEvent; |
46 class MouseEvent; | 47 class MouseEvent; |
47 class LayoutItem; | 48 class LayoutItem; |
48 class TouchEvent; | 49 class TouchEvent; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 // NOTE: If event mapping fails, the type will be set to Undefined. | 132 // NOTE: If event mapping fails, the type will be set to Undefined. |
132 class WEB_EXPORT WebGestureEventBuilder | 133 class WEB_EXPORT WebGestureEventBuilder |
133 : WTF_NON_EXPORTED_BASE(public WebGestureEvent) { | 134 : WTF_NON_EXPORTED_BASE(public WebGestureEvent) { |
134 public: | 135 public: |
135 WebGestureEventBuilder(const LayoutItem, const GestureEvent&); | 136 WebGestureEventBuilder(const LayoutItem, const GestureEvent&); |
136 }; | 137 }; |
137 | 138 |
138 } // namespace blink | 139 } // namespace blink |
139 | 140 |
140 #endif | 141 #endif |
OLD | NEW |