| 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 13 matching lines...) Expand all Loading... |
| 24 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" | 24 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" |
| 25 #include "content/common/input/synthetic_tap_gesture_params.h" | 25 #include "content/common/input/synthetic_tap_gesture_params.h" |
| 26 #include "content/common/input/touch_action.h" | 26 #include "content/common/input/touch_action.h" |
| 27 #include "ipc/ipc_message_macros.h" | 27 #include "ipc/ipc_message_macros.h" |
| 28 #include "third_party/WebKit/public/web/WebInputEvent.h" | 28 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 29 #include "ui/events/ipc/latency_info_param_traits.h" | 29 #include "ui/events/ipc/latency_info_param_traits.h" |
| 30 #include "ui/gfx/geometry/point.h" | 30 #include "ui/gfx/geometry/point.h" |
| 31 #include "ui/gfx/geometry/rect.h" | 31 #include "ui/gfx/geometry/rect.h" |
| 32 #include "ui/gfx/geometry/vector2d_f.h" | 32 #include "ui/gfx/geometry/vector2d_f.h" |
| 33 #include "ui/gfx/ipc/gfx_param_traits.h" | 33 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 34 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 34 #include "ui/gfx/range/range.h" | 35 #include "ui/gfx/range/range.h" |
| 35 | 36 |
| 36 #undef IPC_MESSAGE_EXPORT | 37 #undef IPC_MESSAGE_EXPORT |
| 37 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 38 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 38 | 39 |
| 39 #ifdef IPC_MESSAGE_START | 40 #ifdef IPC_MESSAGE_START |
| 40 #error IPC_MESSAGE_START | 41 #error IPC_MESSAGE_START |
| 41 #endif | 42 #endif |
| 42 | 43 |
| 43 #define IPC_MESSAGE_START InputMsgStart | 44 #define IPC_MESSAGE_START InputMsgStart |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 // This IPC message sends the character bounds after every composition change | 290 // This IPC message sends the character bounds after every composition change |
| 290 // to always have correct bound info. | 291 // to always have correct bound info. |
| 291 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, | 292 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, |
| 292 gfx::Range /* composition range */, | 293 gfx::Range /* composition range */, |
| 293 std::vector<gfx::Rect> /* character bounds */) | 294 std::vector<gfx::Rect> /* character bounds */) |
| 294 | 295 |
| 295 // Adding a new message? Stick to the sort order above: first platform | 296 // Adding a new message? Stick to the sort order above: first platform |
| 296 // independent InputMsg, then ifdefs for platform specific InputMsg, then | 297 // independent InputMsg, then ifdefs for platform specific InputMsg, then |
| 297 // platform independent InputHostMsg, then ifdefs for platform specific | 298 // platform independent InputHostMsg, then ifdefs for platform specific |
| 298 // InputHostMsg. | 299 // InputHostMsg. |
| OLD | NEW |