Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Side by Side Diff: content/common/input_messages.h

Issue 343003003: Move IPC traits for SkBitmap, gfx_geometry into ui/gfx/ipc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix some missing includes & gfx_ipc deps Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/frame_param_macros.h ('k') | content/common/plugin_process_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/common/content_param_traits.h" 11 #include "content/common/content_param_traits.h"
12 #include "content/common/edit_command.h" 12 #include "content/common/edit_command.h"
13 #include "content/common/input/did_overscroll_params.h" 13 #include "content/common/input/did_overscroll_params.h"
14 #include "content/common/input/input_event.h" 14 #include "content/common/input/input_event.h"
15 #include "content/common/input/input_event_ack_state.h" 15 #include "content/common/input/input_event_ack_state.h"
16 #include "content/common/input/input_param_traits.h" 16 #include "content/common/input/input_param_traits.h"
17 #include "content/common/input/synthetic_gesture_packet.h" 17 #include "content/common/input/synthetic_gesture_packet.h"
18 #include "content/common/input/synthetic_gesture_params.h" 18 #include "content/common/input/synthetic_gesture_params.h"
19 #include "content/common/input/synthetic_pinch_gesture_params.h" 19 #include "content/common/input/synthetic_pinch_gesture_params.h"
20 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h" 20 #include "content/common/input/synthetic_smooth_scroll_gesture_params.h"
21 #include "content/common/input/synthetic_tap_gesture_params.h" 21 #include "content/common/input/synthetic_tap_gesture_params.h"
22 #include "content/common/input/touch_action.h"
22 #include "content/public/common/common_param_traits.h" 23 #include "content/public/common/common_param_traits.h"
23 #include "content/common/input/touch_action.h"
24 #include "ipc/ipc_message_macros.h" 24 #include "ipc/ipc_message_macros.h"
25 #include "third_party/WebKit/public/web/WebInputEvent.h" 25 #include "third_party/WebKit/public/web/WebInputEvent.h"
26 #include "ui/events/ipc/latency_info_param_traits.h" 26 #include "ui/events/ipc/latency_info_param_traits.h"
27 #include "ui/gfx/ipc/gfx_param_traits.h"
27 #include "ui/gfx/point.h" 28 #include "ui/gfx/point.h"
28 #include "ui/gfx/range/range.h" 29 #include "ui/gfx/range/range.h"
29 #include "ui/gfx/rect.h" 30 #include "ui/gfx/rect.h"
30 #include "ui/gfx/vector2d_f.h" 31 #include "ui/gfx/vector2d_f.h"
31 32
32 #undef IPC_MESSAGE_EXPORT 33 #undef IPC_MESSAGE_EXPORT
33 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 34 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
34 35
35 #ifdef IPC_MESSAGE_START 36 #ifdef IPC_MESSAGE_START
36 #error IPC_MESSAGE_START 37 #error IPC_MESSAGE_START
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 // bounds after every composition change to always have correct bound info. 232 // bounds after every composition change to always have correct bound info.
232 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged, 233 IPC_MESSAGE_ROUTED2(InputHostMsg_ImeCompositionRangeChanged,
233 gfx::Range /* composition range */, 234 gfx::Range /* composition range */,
234 std::vector<gfx::Rect> /* character bounds */) 235 std::vector<gfx::Rect> /* character bounds */)
235 #endif 236 #endif
236 237
237 // Adding a new message? Stick to the sort order above: first platform 238 // Adding a new message? Stick to the sort order above: first platform
238 // independent InputMsg, then ifdefs for platform specific InputMsg, then 239 // independent InputMsg, then ifdefs for platform specific InputMsg, then
239 // platform independent InputHostMsg, then ifdefs for platform specific 240 // platform independent InputHostMsg, then ifdefs for platform specific
240 // InputHostMsg. 241 // InputHostMsg.
OLDNEW
« no previous file with comments | « content/common/frame_param_macros.h ('k') | content/common/plugin_process_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698