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/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
11 #include "cc/output/compositor_frame.h" | 11 #include "cc/output/compositor_frame.h" |
12 #include "cc/output/compositor_frame_ack.h" | 12 #include "cc/output/compositor_frame_ack.h" |
13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
14 #include "content/common/content_param_traits.h" | 14 #include "content/common/content_param_traits.h" |
15 #include "content/common/navigation_gesture.h" | 15 #include "content/common/navigation_gesture.h" |
16 #include "content/common/pepper_renderer_instance_data.h" | 16 #include "content/common/pepper_renderer_instance_data.h" |
17 #include "content/common/view_message_enums.h" | 17 #include "content/common/view_message_enums.h" |
18 #include "content/port/common/input_event_ack_state.h" | |
19 #include "content/public/common/common_param_traits.h" | 18 #include "content/public/common/common_param_traits.h" |
20 #include "content/public/common/context_menu_params.h" | 19 #include "content/public/common/context_menu_params.h" |
21 #include "content/public/common/favicon_url.h" | 20 #include "content/public/common/favicon_url.h" |
22 #include "content/public/common/file_chooser_params.h" | 21 #include "content/public/common/file_chooser_params.h" |
23 #include "content/public/common/frame_navigate_params.h" | 22 #include "content/public/common/frame_navigate_params.h" |
| 23 #include "content/public/common/input_event_ack_state.h" |
24 #include "content/public/common/javascript_message_type.h" | 24 #include "content/public/common/javascript_message_type.h" |
25 #include "content/public/common/page_zoom.h" | 25 #include "content/public/common/page_zoom.h" |
26 #include "content/public/common/referrer.h" | 26 #include "content/public/common/referrer.h" |
27 #include "content/public/common/renderer_preferences.h" | 27 #include "content/public/common/renderer_preferences.h" |
28 #include "content/public/common/stop_find_action.h" | 28 #include "content/public/common/stop_find_action.h" |
29 #include "content/public/common/three_d_api_types.h" | 29 #include "content/public/common/three_d_api_types.h" |
30 #include "content/public/common/window_container_type.h" | 30 #include "content/public/common/window_container_type.h" |
31 #include "ipc/ipc_channel_handle.h" | 31 #include "ipc/ipc_channel_handle.h" |
32 #include "ipc/ipc_message_macros.h" | 32 #include "ipc/ipc_message_macros.h" |
33 #include "ipc/ipc_platform_file.h" | 33 #include "ipc/ipc_platform_file.h" |
(...skipping 2266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2300 // Since the browser keeps handles to the allocated transport DIBs, this | 2300 // Since the browser keeps handles to the allocated transport DIBs, this |
2301 // message is sent to tell the browser that it may release them when the | 2301 // message is sent to tell the browser that it may release them when the |
2302 // renderer is finished with them. | 2302 // renderer is finished with them. |
2303 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 2303 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
2304 TransportDIB::Id /* DIB id */) | 2304 TransportDIB::Id /* DIB id */) |
2305 #endif | 2305 #endif |
2306 | 2306 |
2307 // Adding a new message? Stick to the sort order above: first platform | 2307 // Adding a new message? Stick to the sort order above: first platform |
2308 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2308 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
2309 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2309 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |