| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 // IPC messages for input events and other messages that require processing in | 5 // IPC messages for input events and other messages that require processing in |
| 6 // order relative to input events. | 6 // order relative to input events. |
| 7 // Multiply-included message file, hence no include guard. | 7 // Multiply-included message file, hence no include guard. |
| 8 | 8 |
| 9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "content/common/content_param_traits.h" | 12 #include "content/common/content_param_traits.h" |
| 13 #include "content/common/edit_command.h" | 13 #include "content/common/edit_command.h" |
| 14 #include "content/common/input/did_overscroll_params.h" | 14 #include "content/common/input/did_overscroll_params.h" |
| 15 #include "content/common/input/input_event.h" | 15 #include "content/common/input/input_event.h" |
| 16 #include "content/common/input/input_event_ack.h" | 16 #include "content/common/input/input_event_ack.h" |
| 17 #include "content/common/input/input_event_ack_state.h" | 17 #include "content/common/input/input_event_ack_state.h" |
| 18 #include "content/common/input/input_event_dispatch_type.h" |
| 18 #include "content/common/input/input_param_traits.h" | 19 #include "content/common/input/input_param_traits.h" |
| 19 #include "content/common/input/synthetic_gesture_packet.h" | 20 #include "content/common/input/synthetic_gesture_packet.h" |
| 20 #include "content/common/input/synthetic_gesture_params.h" | 21 #include "content/common/input/synthetic_gesture_params.h" |
| 21 #include "content/common/input/synthetic_pinch_gesture_params.h" | 22 #include "content/common/input/synthetic_pinch_gesture_params.h" |
| 22 #include "content/common/input/synthetic_smooth_drag_gesture_params.h" | 23 #include "content/common/input/synthetic_smooth_drag_gesture_params.h" |
| 23 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" | 24 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" |
| 24 #include "content/common/input/synthetic_tap_gesture_params.h" | 25 #include "content/common/input/synthetic_tap_gesture_params.h" |
| 25 #include "content/common/input/touch_action.h" | 26 #include "content/common/input/touch_action.h" |
| 26 #include "content/public/common/common_param_traits.h" | 27 #include "content/public/common/common_param_traits.h" |
| 27 #include "ipc/ipc_message_macros.h" | 28 #include "ipc/ipc_message_macros.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 41 #endif | 42 #endif |
| 42 | 43 |
| 43 #define IPC_MESSAGE_START InputMsgStart | 44 #define IPC_MESSAGE_START InputMsgStart |
| 44 | 45 |
| 45 IPC_ENUM_TRAITS_MAX_VALUE( | 46 IPC_ENUM_TRAITS_MAX_VALUE( |
| 46 content::SyntheticGestureParams::GestureSourceType, | 47 content::SyntheticGestureParams::GestureSourceType, |
| 47 content::SyntheticGestureParams::GESTURE_SOURCE_TYPE_MAX) | 48 content::SyntheticGestureParams::GESTURE_SOURCE_TYPE_MAX) |
| 48 IPC_ENUM_TRAITS_MAX_VALUE( | 49 IPC_ENUM_TRAITS_MAX_VALUE( |
| 49 content::SyntheticGestureParams::GestureType, | 50 content::SyntheticGestureParams::GestureType, |
| 50 content::SyntheticGestureParams::SYNTHETIC_GESTURE_TYPE_MAX) | 51 content::SyntheticGestureParams::SYNTHETIC_GESTURE_TYPE_MAX) |
| 52 IPC_ENUM_TRAITS_MAX_VALUE( |
| 53 content::InputEventDispatchType, |
| 54 content::InputEventDispatchType::DISPATCH_TYPE_NON_BLOCKING) |
| 51 IPC_ENUM_TRAITS_VALIDATE(content::TouchAction, ( | 55 IPC_ENUM_TRAITS_VALIDATE(content::TouchAction, ( |
| 52 value >= 0 && | 56 value >= 0 && |
| 53 value <= content::TOUCH_ACTION_MAX && | 57 value <= content::TOUCH_ACTION_MAX && |
| 54 (!(value & content::TOUCH_ACTION_NONE) || | 58 (!(value & content::TOUCH_ACTION_NONE) || |
| 55 (value == content::TOUCH_ACTION_NONE)) && | 59 (value == content::TOUCH_ACTION_NONE)) && |
| 56 (!(value & content::TOUCH_ACTION_PINCH_ZOOM) || | 60 (!(value & content::TOUCH_ACTION_PINCH_ZOOM) || |
| 57 (value == content::TOUCH_ACTION_MANIPULATION)))) | 61 (value == content::TOUCH_ACTION_MANIPULATION)))) |
| 58 | 62 |
| 59 IPC_STRUCT_TRAITS_BEGIN(content::DidOverscrollParams) | 63 IPC_STRUCT_TRAITS_BEGIN(content::DidOverscrollParams) |
| 60 IPC_STRUCT_TRAITS_MEMBER(accumulated_overscroll) | 64 IPC_STRUCT_TRAITS_MEMBER(accumulated_overscroll) |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 | 111 |
| 108 IPC_STRUCT_TRAITS_BEGIN(content::InputEventAck) | 112 IPC_STRUCT_TRAITS_BEGIN(content::InputEventAck) |
| 109 IPC_STRUCT_TRAITS_MEMBER(type) | 113 IPC_STRUCT_TRAITS_MEMBER(type) |
| 110 IPC_STRUCT_TRAITS_MEMBER(state) | 114 IPC_STRUCT_TRAITS_MEMBER(state) |
| 111 IPC_STRUCT_TRAITS_MEMBER(latency) | 115 IPC_STRUCT_TRAITS_MEMBER(latency) |
| 112 IPC_STRUCT_TRAITS_MEMBER(overscroll) | 116 IPC_STRUCT_TRAITS_MEMBER(overscroll) |
| 113 IPC_STRUCT_TRAITS_MEMBER(unique_touch_event_id) | 117 IPC_STRUCT_TRAITS_MEMBER(unique_touch_event_id) |
| 114 IPC_STRUCT_TRAITS_END() | 118 IPC_STRUCT_TRAITS_END() |
| 115 | 119 |
| 116 // Sends an input event to the render widget. | 120 // Sends an input event to the render widget. |
| 117 IPC_MESSAGE_ROUTED2(InputMsg_HandleInputEvent, | 121 IPC_MESSAGE_ROUTED3(InputMsg_HandleInputEvent, |
| 118 IPC::WebInputEventPointer /* event */, | 122 IPC::WebInputEventPointer /* event */, |
| 119 ui::LatencyInfo /* latency_info */) | 123 ui::LatencyInfo /* latency_info */, |
| 124 content::InputEventDispatchType) |
| 120 | 125 |
| 121 // Sends the cursor visibility state to the render widget. | 126 // Sends the cursor visibility state to the render widget. |
| 122 IPC_MESSAGE_ROUTED1(InputMsg_CursorVisibilityChange, | 127 IPC_MESSAGE_ROUTED1(InputMsg_CursorVisibilityChange, |
| 123 bool /* is_visible */) | 128 bool /* is_visible */) |
| 124 | 129 |
| 125 // Sets the text composition to be between the given start and end offsets in | 130 // Sets the text composition to be between the given start and end offsets in |
| 126 // the currently focused editable field. | 131 // the currently focused editable field. |
| 127 IPC_MESSAGE_ROUTED3(InputMsg_SetCompositionFromExistingText, | 132 IPC_MESSAGE_ROUTED3(InputMsg_SetCompositionFromExistingText, |
| 128 int /* start */, | 133 int /* start */, |
| 129 int /* end */, | 134 int /* end */, |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 // This IPC message sends the character bounds after every composition change | 289 // This IPC message sends the character bounds after every composition change |
| 285 // to always have correct bound info. | 290 // to always have correct bound info. |
| 286 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, | 291 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, |
| 287 gfx::Range /* composition range */, | 292 gfx::Range /* composition range */, |
| 288 std::vector<gfx::Rect> /* character bounds */) | 293 std::vector<gfx::Rect> /* character bounds */) |
| 289 | 294 |
| 290 // Adding a new message? Stick to the sort order above: first platform | 295 // Adding a new message? Stick to the sort order above: first platform |
| 291 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 296 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
| 292 // platform independent InputHostMsg, then ifdefs for platform specific | 297 // platform independent InputHostMsg, then ifdefs for platform specific |
| 293 // InputHostMsg. | 298 // InputHostMsg. |
| OLD | NEW |