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 |
11 #include "base/memory/shared_memory.h" | 11 #include "base/memory/shared_memory.h" |
12 #include "base/process/process.h" | 12 #include "base/process/process.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
15 #include "cc/output/begin_frame_args.h" | 15 #include "cc/output/begin_frame_args.h" |
16 #include "cc/output/compositor_frame.h" | 16 #include "cc/output/compositor_frame.h" |
17 #include "cc/output/compositor_frame_ack.h" | 17 #include "cc/output/compositor_frame_ack.h" |
18 #include "cc/resources/shared_bitmap.h" | 18 #include "cc/resources/shared_bitmap.h" |
19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
20 #include "content/common/content_param_traits.h" | 20 #include "content/common/content_param_traits.h" |
21 #include "content/common/date_time_suggestion.h" | 21 #include "content/common/date_time_suggestion.h" |
22 #include "content/common/frame_replication_state.h" | 22 #include "content/common/frame_replication_state.h" |
23 #include "content/common/media/media_param_traits.h" | 23 #include "content/common/media/media_param_traits.h" |
24 #include "content/common/navigation_gesture.h" | 24 #include "content/common/navigation_gesture.h" |
25 #include "content/common/resize_params.h" | 25 #include "content/common/resize_params.h" |
26 #include "content/common/view_message_enums.h" | 26 #include "content/common/view_message_enums.h" |
27 #include "content/common/webplugin_geometry.h" | |
28 #include "content/public/common/common_param_traits.h" | 27 #include "content/public/common/common_param_traits.h" |
29 #include "content/public/common/favicon_url.h" | 28 #include "content/public/common/favicon_url.h" |
30 #include "content/public/common/file_chooser_file_info.h" | 29 #include "content/public/common/file_chooser_file_info.h" |
31 #include "content/public/common/file_chooser_params.h" | 30 #include "content/public/common/file_chooser_params.h" |
32 #include "content/public/common/menu_item.h" | 31 #include "content/public/common/menu_item.h" |
33 #include "content/public/common/message_port_types.h" | 32 #include "content/public/common/message_port_types.h" |
34 #include "content/public/common/page_state.h" | 33 #include "content/public/common/page_state.h" |
35 #include "content/public/common/page_zoom.h" | 34 #include "content/public/common/page_zoom.h" |
36 #include "content/public/common/referrer.h" | 35 #include "content/public/common/referrer.h" |
37 #include "content/public/common/renderer_preferences.h" | 36 #include "content/public/common/renderer_preferences.h" |
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1288 int /* y */) | 1287 int /* y */) |
1289 | 1288 |
1290 #elif defined(OS_MACOSX) | 1289 #elif defined(OS_MACOSX) |
1291 // Receives content of a web page as plain text. | 1290 // Receives content of a web page as plain text. |
1292 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1291 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1293 #endif | 1292 #endif |
1294 | 1293 |
1295 // Adding a new message? Stick to the sort order above: first platform | 1294 // Adding a new message? Stick to the sort order above: first platform |
1296 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1295 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1297 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1296 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |