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

Side by Side Diff: third_party/WebKit/Source/web/WebInputEventConversion.h

Issue 2639273002: Give WebTouchEvent and WebKeyboardEvent their own headers (Closed)
Patch Set: Rebase Created 3 years, 11 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 unified diff | Download patch
OLDNEW
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
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/PlatformMouseEvent.h" 34 #include "platform/PlatformMouseEvent.h"
35 #include "platform/PlatformTouchEvent.h" 35 #include "platform/PlatformTouchEvent.h"
36 #include "platform/scroll/ScrollTypes.h" 36 #include "platform/scroll/ScrollTypes.h"
37 #include "public/platform/WebInputEvent.h" 37 #include "public/platform/WebInputEvent.h"
38 #include "public/platform/WebKeyboardEvent.h"
38 #include "public/platform/WebMouseWheelEvent.h" 39 #include "public/platform/WebMouseWheelEvent.h"
40 #include "public/platform/WebTouchEvent.h"
39 #include "web/WebExport.h" 41 #include "web/WebExport.h"
40 #include "wtf/Compiler.h" 42 #include "wtf/Compiler.h"
41 #include <vector> 43 #include <vector>
42 44
43 namespace blink { 45 namespace blink {
44 46
45 class KeyboardEvent; 47 class KeyboardEvent;
46 class MouseEvent; 48 class MouseEvent;
47 class LayoutItem; 49 class LayoutItem;
48 class TouchEvent; 50 class TouchEvent;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 Vector<PlatformMouseEvent> WEB_EXPORT 117 Vector<PlatformMouseEvent> WEB_EXPORT
116 createPlatformMouseEventVector(Widget*, 118 createPlatformMouseEventVector(Widget*,
117 const std::vector<const WebInputEvent*>&); 119 const std::vector<const WebInputEvent*>&);
118 Vector<PlatformTouchEvent> WEB_EXPORT 120 Vector<PlatformTouchEvent> WEB_EXPORT
119 createPlatformTouchEventVector(Widget*, 121 createPlatformTouchEventVector(Widget*,
120 const std::vector<const WebInputEvent*>&); 122 const std::vector<const WebInputEvent*>&);
121 123
122 } // namespace blink 124 } // namespace blink
123 125
124 #endif 126 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebInputEvent.cpp ('k') | third_party/WebKit/Source/web/tests/TouchActionTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698