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 #include "content/renderer/pepper/event_conversion.h" | 5 #include "content/renderer/pepper/event_conversion.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 #include <string.h> | 9 #include <string.h> |
10 | 10 |
11 #include <memory> | 11 #include <memory> |
12 | 12 |
13 #include "base/i18n/char_iterator.h" | 13 #include "base/i18n/char_iterator.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
16 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
17 #include "base/strings/stringprintf.h" | 17 #include "base/strings/stringprintf.h" |
18 #include "base/strings/utf_string_conversion_utils.h" | 18 #include "base/strings/utf_string_conversion_utils.h" |
19 #include "base/strings/utf_string_conversions.h" | 19 #include "base/strings/utf_string_conversions.h" |
20 #include "build/build_config.h" | 20 #include "build/build_config.h" |
21 #include "content/common/input/web_touch_event_traits.h" | 21 #include "content/common/input/web_touch_event_traits.h" |
22 #include "ppapi/c/pp_input_event.h" | 22 #include "ppapi/c/pp_input_event.h" |
23 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 23 #include "ppapi/shared_impl/ppb_input_event_shared.h" |
24 #include "third_party/WebKit/public/platform/WebGamepads.h" | 24 #include "third_party/WebKit/public/platform/WebGamepads.h" |
25 #include "third_party/WebKit/public/web/WebInputEvent.h" | 25 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
26 #include "ui/events/keycodes/dom/keycode_converter.h" | 26 #include "ui/events/keycodes/dom/keycode_converter.h" |
27 | 27 |
28 using ppapi::InputEventData; | 28 using ppapi::InputEventData; |
29 using blink::WebInputEvent; | 29 using blink::WebInputEvent; |
30 using blink::WebKeyboardEvent; | 30 using blink::WebKeyboardEvent; |
31 using blink::WebMouseEvent; | 31 using blink::WebMouseEvent; |
32 using blink::WebMouseWheelEvent; | 32 using blink::WebMouseWheelEvent; |
33 using blink::WebTouchEvent; | 33 using blink::WebTouchEvent; |
34 using blink::WebTouchPoint; | 34 using blink::WebTouchPoint; |
35 using blink::WebUChar; | 35 using blink::WebUChar; |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
828 return PP_INPUTEVENT_CLASS_TOUCH; | 828 return PP_INPUTEVENT_CLASS_TOUCH; |
829 case WebInputEvent::TouchScrollStarted: | 829 case WebInputEvent::TouchScrollStarted: |
830 return PP_InputEvent_Class(0); | 830 return PP_InputEvent_Class(0); |
831 default: | 831 default: |
832 CHECK(WebInputEvent::isGestureEventType(event.type)); | 832 CHECK(WebInputEvent::isGestureEventType(event.type)); |
833 return PP_InputEvent_Class(0); | 833 return PP_InputEvent_Class(0); |
834 } | 834 } |
835 } | 835 } |
836 | 836 |
837 } // namespace content | 837 } // namespace content |
OLD | NEW |