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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 214 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
215 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 215 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
216 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 216 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
217 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 217 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
218 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 218 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
219 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 219 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
220 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 220 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
221 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 221 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
222 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 222 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
223 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 223 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
| 224 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
224 IPC_STRUCT_TRAITS_END() | 225 IPC_STRUCT_TRAITS_END() |
225 | 226 |
226 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) | 227 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) |
227 IPC_STRUCT_TRAITS_MEMBER(name) | 228 IPC_STRUCT_TRAITS_MEMBER(name) |
228 IPC_STRUCT_TRAITS_MEMBER(value) | 229 IPC_STRUCT_TRAITS_MEMBER(value) |
229 IPC_STRUCT_TRAITS_MEMBER(domain) | 230 IPC_STRUCT_TRAITS_MEMBER(domain) |
230 IPC_STRUCT_TRAITS_MEMBER(path) | 231 IPC_STRUCT_TRAITS_MEMBER(path) |
231 IPC_STRUCT_TRAITS_MEMBER(expires) | 232 IPC_STRUCT_TRAITS_MEMBER(expires) |
232 IPC_STRUCT_TRAITS_MEMBER(http_only) | 233 IPC_STRUCT_TRAITS_MEMBER(http_only) |
233 IPC_STRUCT_TRAITS_MEMBER(secure) | 234 IPC_STRUCT_TRAITS_MEMBER(secure) |
(...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1640 // Since the browser keeps handles to the allocated transport DIBs, this | 1641 // Since the browser keeps handles to the allocated transport DIBs, this |
1641 // message is sent to tell the browser that it may release them when the | 1642 // message is sent to tell the browser that it may release them when the |
1642 // renderer is finished with them. | 1643 // renderer is finished with them. |
1643 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1644 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
1644 TransportDIB::Id /* DIB id */) | 1645 TransportDIB::Id /* DIB id */) |
1645 #endif | 1646 #endif |
1646 | 1647 |
1647 // Adding a new message? Stick to the sort order above: first platform | 1648 // Adding a new message? Stick to the sort order above: first platform |
1648 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1649 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1649 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1650 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |