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" |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 IPC_STRUCT_TRAITS_MEMBER(capture) | 219 IPC_STRUCT_TRAITS_MEMBER(capture) |
220 #endif | 220 #endif |
221 IPC_STRUCT_TRAITS_END() | 221 IPC_STRUCT_TRAITS_END() |
222 | 222 |
223 #if defined(ENABLE_PLUGINS) | 223 #if defined(ENABLE_PLUGINS) |
224 IPC_STRUCT_TRAITS_BEGIN(content::PepperRendererInstanceData) | 224 IPC_STRUCT_TRAITS_BEGIN(content::PepperRendererInstanceData) |
225 IPC_STRUCT_TRAITS_MEMBER(render_process_id) | 225 IPC_STRUCT_TRAITS_MEMBER(render_process_id) |
226 IPC_STRUCT_TRAITS_MEMBER(render_frame_id) | 226 IPC_STRUCT_TRAITS_MEMBER(render_frame_id) |
227 IPC_STRUCT_TRAITS_MEMBER(document_url) | 227 IPC_STRUCT_TRAITS_MEMBER(document_url) |
228 IPC_STRUCT_TRAITS_MEMBER(plugin_url) | 228 IPC_STRUCT_TRAITS_MEMBER(plugin_url) |
| 229 IPC_STRUCT_TRAITS_MEMBER(is_privileged_context) |
229 IPC_STRUCT_TRAITS_END() | 230 IPC_STRUCT_TRAITS_END() |
230 #endif | 231 #endif |
231 | 232 |
232 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) | 233 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) |
233 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) | 234 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) |
234 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) | 235 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) |
235 IPC_STRUCT_TRAITS_MEMBER(hinting) | 236 IPC_STRUCT_TRAITS_MEMBER(hinting) |
236 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) | 237 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) |
237 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) | 238 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) |
238 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) | 239 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) |
(...skipping 1373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1612 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1613 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1613 // for details. | 1614 // for details. |
1614 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1615 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1615 LOGFONT /* font_data */, | 1616 LOGFONT /* font_data */, |
1616 base::string16 /* characters */) | 1617 base::string16 /* characters */) |
1617 #endif | 1618 #endif |
1618 | 1619 |
1619 // Adding a new message? Stick to the sort order above: first platform | 1620 // Adding a new message? Stick to the sort order above: first platform |
1620 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1621 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1621 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1622 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |