| 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" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/common/input/synthetic_pinch_gesture_params.h" | 22 #include "content/common/input/synthetic_pinch_gesture_params.h" |
| 23 #include "content/common/input/synthetic_pointer_action_list_params.h" | 23 #include "content/common/input/synthetic_pointer_action_list_params.h" |
| 24 #include "content/common/input/synthetic_pointer_action_params.h" | 24 #include "content/common/input/synthetic_pointer_action_params.h" |
| 25 #include "content/common/input/synthetic_smooth_drag_gesture_params.h" | 25 #include "content/common/input/synthetic_smooth_drag_gesture_params.h" |
| 26 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" | 26 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" |
| 27 #include "content/common/input/synthetic_tap_gesture_params.h" | 27 #include "content/common/input/synthetic_tap_gesture_params.h" |
| 28 #include "content/common/input/touch_action.h" | 28 #include "content/common/input/touch_action.h" |
| 29 #include "ipc/ipc_message_macros.h" | 29 #include "ipc/ipc_message_macros.h" |
| 30 #include "third_party/WebKit/public/platform/WebInputEvent.h" | 30 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 31 #include "ui/events/blink/did_overscroll_params.h" | 31 #include "ui/events/blink/did_overscroll_params.h" |
| 32 #include "ui/events/ipc/latency_info_param_traits.h" | |
| 33 #include "ui/gfx/geometry/point.h" | 32 #include "ui/gfx/geometry/point.h" |
| 34 #include "ui/gfx/geometry/rect.h" | 33 #include "ui/gfx/geometry/rect.h" |
| 35 #include "ui/gfx/geometry/vector2d_f.h" | 34 #include "ui/gfx/geometry/vector2d_f.h" |
| 36 #include "ui/gfx/ipc/gfx_param_traits.h" | 35 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 37 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" | 36 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 38 #include "ui/gfx/range/range.h" | 37 #include "ui/gfx/range/range.h" |
| 38 #include "ui/latency/ipc/latency_info_param_traits.h" |
| 39 | 39 |
| 40 #undef IPC_MESSAGE_EXPORT | 40 #undef IPC_MESSAGE_EXPORT |
| 41 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 41 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 42 | 42 |
| 43 #ifdef IPC_MESSAGE_START | 43 #ifdef IPC_MESSAGE_START |
| 44 #error IPC_MESSAGE_START | 44 #error IPC_MESSAGE_START |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 #define IPC_MESSAGE_START InputMsgStart | 47 #define IPC_MESSAGE_START InputMsgStart |
| 48 | 48 |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 // This IPC message sends the character bounds after every composition change | 338 // This IPC message sends the character bounds after every composition change |
| 339 // to always have correct bound info. | 339 // to always have correct bound info. |
| 340 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, | 340 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, |
| 341 gfx::Range /* composition range */, | 341 gfx::Range /* composition range */, |
| 342 std::vector<gfx::Rect> /* character bounds */) | 342 std::vector<gfx::Rect> /* character bounds */) |
| 343 | 343 |
| 344 // Adding a new message? Stick to the sort order above: first platform | 344 // Adding a new message? Stick to the sort order above: first platform |
| 345 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 345 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
| 346 // platform independent InputHostMsg, then ifdefs for platform specific | 346 // platform independent InputHostMsg, then ifdefs for platform specific |
| 347 // InputHostMsg. | 347 // InputHostMsg. |
| OLD | NEW |