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 "base/i18n/char_iterator.h" | 11 #include "base/i18n/char_iterator.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
16 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
17 #include "base/strings/utf_string_conversion_utils.h" | 17 #include "base/strings/utf_string_conversion_utils.h" |
18 #include "base/strings/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
20 #include "content/common/input/web_touch_event_traits.h" | 20 #include "content/public/common/input/web_touch_event_traits.h" |
21 #include "ppapi/c/pp_input_event.h" | 21 #include "ppapi/c/pp_input_event.h" |
22 #include "ppapi/shared_impl/ppb_input_event_shared.h" | 22 #include "ppapi/shared_impl/ppb_input_event_shared.h" |
23 #include "third_party/WebKit/public/platform/WebGamepads.h" | 23 #include "third_party/WebKit/public/platform/WebGamepads.h" |
24 #include "third_party/WebKit/public/web/WebInputEvent.h" | 24 #include "third_party/WebKit/public/web/WebInputEvent.h" |
25 #include "ui/events/keycodes/dom/keycode_converter.h" | 25 #include "ui/events/keycodes/dom/keycode_converter.h" |
26 | 26 |
27 using ppapi::InputEventData; | 27 using ppapi::InputEventData; |
28 using blink::WebInputEvent; | 28 using blink::WebInputEvent; |
29 using blink::WebKeyboardEvent; | 29 using blink::WebKeyboardEvent; |
30 using blink::WebMouseEvent; | 30 using blink::WebMouseEvent; |
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 case WebInputEvent::TouchStart: | 740 case WebInputEvent::TouchStart: |
741 return PP_INPUTEVENT_CLASS_TOUCH; | 741 return PP_INPUTEVENT_CLASS_TOUCH; |
742 case WebInputEvent::Undefined: | 742 case WebInputEvent::Undefined: |
743 default: | 743 default: |
744 CHECK(WebInputEvent::isGestureEventType(type)); | 744 CHECK(WebInputEvent::isGestureEventType(type)); |
745 return PP_InputEvent_Class(0); | 745 return PP_InputEvent_Class(0); |
746 } | 746 } |
747 } | 747 } |
748 | 748 |
749 } // namespace content | 749 } // namespace content |
OLD | NEW |