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/date_time_suggestion.h" | 16 #include "content/common/date_time_suggestion.h" |
17 #include "content/common/frame_replication_state.h" | 17 #include "content/common/frame_replication_state.h" |
| 18 #include "content/common/media/media_param_traits.h" |
18 #include "content/common/navigation_gesture.h" | 19 #include "content/common/navigation_gesture.h" |
19 #include "content/common/view_message_enums.h" | 20 #include "content/common/view_message_enums.h" |
20 #include "content/common/webplugin_geometry.h" | 21 #include "content/common/webplugin_geometry.h" |
21 #include "content/public/common/common_param_traits.h" | 22 #include "content/public/common/common_param_traits.h" |
22 #include "content/public/common/favicon_url.h" | 23 #include "content/public/common/favicon_url.h" |
23 #include "content/public/common/file_chooser_file_info.h" | 24 #include "content/public/common/file_chooser_file_info.h" |
24 #include "content/public/common/file_chooser_params.h" | 25 #include "content/public/common/file_chooser_params.h" |
25 #include "content/public/common/menu_item.h" | 26 #include "content/public/common/menu_item.h" |
26 #include "content/public/common/message_port_types.h" | 27 #include "content/public/common/message_port_types.h" |
27 #include "content/public/common/page_state.h" | 28 #include "content/public/common/page_state.h" |
(...skipping 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1611 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1612 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1612 // for details. | 1613 // for details. |
1613 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1614 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1614 LOGFONT /* font_data */, | 1615 LOGFONT /* font_data */, |
1615 base::string16 /* characters */) | 1616 base::string16 /* characters */) |
1616 #endif | 1617 #endif |
1617 | 1618 |
1618 // Adding a new message? Stick to the sort order above: first platform | 1619 // Adding a new message? Stick to the sort order above: first platform |
1619 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1620 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1620 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1621 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |