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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "cc/output/begin_frame_args.h" | 11 #include "cc/output/begin_frame_args.h" |
12 #include "cc/output/compositor_frame.h" | 12 #include "cc/output/compositor_frame.h" |
13 #include "cc/output/compositor_frame_ack.h" | 13 #include "cc/output/compositor_frame_ack.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/common/content_param_traits.h" | 15 #include "content/common/content_param_traits.h" |
16 #include "content/common/cookie_data.h" | 16 #include "content/common/cookie_data.h" |
17 #include "content/common/input/did_overscroll_params.h" | 17 #include "content/common/input/did_overscroll_params.h" |
| 18 #include "content/common/input/input_event_ack_state.h" |
18 #include "content/common/navigation_gesture.h" | 19 #include "content/common/navigation_gesture.h" |
19 #include "content/common/pepper_renderer_instance_data.h" | 20 #include "content/common/pepper_renderer_instance_data.h" |
20 #include "content/common/view_message_enums.h" | 21 #include "content/common/view_message_enums.h" |
21 #include "content/common/webplugin_geometry.h" | 22 #include "content/common/webplugin_geometry.h" |
22 #include "content/port/common/input_event_ack_state.h" | |
23 #include "content/public/common/common_param_traits.h" | 23 #include "content/public/common/common_param_traits.h" |
24 #include "content/public/common/favicon_url.h" | 24 #include "content/public/common/favicon_url.h" |
25 #include "content/public/common/file_chooser_params.h" | 25 #include "content/public/common/file_chooser_params.h" |
26 #include "content/public/common/menu_item.h" | 26 #include "content/public/common/menu_item.h" |
27 #include "content/public/common/page_state.h" | 27 #include "content/public/common/page_state.h" |
28 #include "content/public/common/page_zoom.h" | 28 #include "content/public/common/page_zoom.h" |
29 #include "content/public/common/referrer.h" | 29 #include "content/public/common/referrer.h" |
30 #include "content/public/common/renderer_preferences.h" | 30 #include "content/public/common/renderer_preferences.h" |
31 #include "content/public/common/stop_find_action.h" | 31 #include "content/public/common/stop_find_action.h" |
32 #include "content/public/common/three_d_api_types.h" | 32 #include "content/public/common/three_d_api_types.h" |
(...skipping 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1779 // synchronously (see crbug.com/120597). This IPC message sends the character | 1779 // synchronously (see crbug.com/120597). This IPC message sends the character |
1780 // bounds after every composition change to always have correct bound info. | 1780 // bounds after every composition change to always have correct bound info. |
1781 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 1781 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
1782 gfx::Range /* composition range */, | 1782 gfx::Range /* composition range */, |
1783 std::vector<gfx::Rect> /* character bounds */) | 1783 std::vector<gfx::Rect> /* character bounds */) |
1784 #endif | 1784 #endif |
1785 | 1785 |
1786 // Adding a new message? Stick to the sort order above: first platform | 1786 // Adding a new message? Stick to the sort order above: first platform |
1787 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1787 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1788 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1788 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |