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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "content/common/frame_replication_state.h" | 22 #include "content/common/frame_replication_state.h" |
23 #include "content/common/navigation_gesture.h" | 23 #include "content/common/navigation_gesture.h" |
24 #include "content/common/resize_params.h" | 24 #include "content/common/resize_params.h" |
25 #include "content/common/text_input_state.h" | 25 #include "content/common/text_input_state.h" |
26 #include "content/common/view_message_enums.h" | 26 #include "content/common/view_message_enums.h" |
27 #include "content/public/common/common_param_traits.h" | 27 #include "content/public/common/common_param_traits.h" |
28 #include "content/public/common/favicon_url.h" | 28 #include "content/public/common/favicon_url.h" |
29 #include "content/public/common/file_chooser_file_info.h" | 29 #include "content/public/common/file_chooser_file_info.h" |
30 #include "content/public/common/file_chooser_params.h" | 30 #include "content/public/common/file_chooser_params.h" |
31 #include "content/public/common/menu_item.h" | 31 #include "content/public/common/menu_item.h" |
32 #include "content/public/common/message_port_types.h" | |
33 #include "content/public/common/page_state.h" | 32 #include "content/public/common/page_state.h" |
34 #include "content/public/common/page_zoom.h" | 33 #include "content/public/common/page_zoom.h" |
35 #include "content/public/common/referrer.h" | 34 #include "content/public/common/referrer.h" |
36 #include "content/public/common/renderer_preferences.h" | 35 #include "content/public/common/renderer_preferences.h" |
37 #include "content/public/common/three_d_api_types.h" | 36 #include "content/public/common/three_d_api_types.h" |
38 #include "content/public/common/window_container_type.h" | 37 #include "content/public/common/window_container_type.h" |
39 #include "ipc/ipc_channel_handle.h" | 38 #include "ipc/ipc_channel_handle.h" |
40 #include "ipc/ipc_message_macros.h" | 39 #include "ipc/ipc_message_macros.h" |
41 #include "media/base/audio_parameters.h" | 40 #include "media/base/audio_parameters.h" |
42 #include "media/base/channel_layout.h" | 41 #include "media/base/channel_layout.h" |
(...skipping 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1247 int /* y */) | 1246 int /* y */) |
1248 | 1247 |
1249 #elif defined(OS_MACOSX) | 1248 #elif defined(OS_MACOSX) |
1250 // Receives content of a web page as plain text. | 1249 // Receives content of a web page as plain text. |
1251 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1250 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1252 #endif | 1251 #endif |
1253 | 1252 |
1254 // Adding a new message? Stick to the sort order above: first platform | 1253 // Adding a new message? Stick to the sort order above: first platform |
1255 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1254 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1256 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1255 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |