OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ |
7 | 7 |
8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
9 #include "third_party/WebKit/public/web/WebInputEvent.h" | 9 #include "third_party/WebKit/public/web/WebInputEvent.h" |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... | |
28 const ui::MouseWheelEvent& event); | 28 const ui::MouseWheelEvent& event); |
29 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent( | 29 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEvent( |
30 const ui::ScrollEvent& event); | 30 const ui::ScrollEvent& event); |
31 CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent( | 31 CONTENT_EXPORT blink::WebKeyboardEvent MakeWebKeyboardEvent( |
32 const ui::KeyEvent& event); | 32 const ui::KeyEvent& event); |
33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( | 33 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( |
34 const ui::GestureEvent& event); | 34 const ui::GestureEvent& event); |
35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( | 35 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEvent( |
36 const ui::ScrollEvent& event); | 36 const ui::ScrollEvent& event); |
37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel(); | 37 CONTENT_EXPORT blink::WebGestureEvent MakeWebGestureEventFlingCancel(); |
38 CONTENT_EXPORT blink::WebMouseEvent MakeWebMouseEventFromAuraEvent( | |
39 const ui::MouseEvent& event); | |
40 CONTENT_EXPORT blink::WebMouseWheelEvent MakeWebMouseWheelEventFromAuraEvent( | |
41 const ui::MouseWheelEvent& event); | |
sadrul
2015/09/09 17:32:06
You don't actually need to expose these functions,
| |
38 | 42 |
39 } // namespace content | 43 } // namespace content |
40 | 44 |
41 #endif // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ | 45 #endif // CONTENT_BROWSER_RENDERER_HOST_WEB_INPUT_EVENT_AURA_H_ |
OLD | NEW |