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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 207 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
208 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 208 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
209 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 209 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
210 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 210 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
211 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile) | 211 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile) |
212 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) | 212 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) |
213 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 213 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
214 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 214 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
215 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 215 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
216 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 216 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
| 217 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
217 IPC_STRUCT_TRAITS_END() | 218 IPC_STRUCT_TRAITS_END() |
218 | 219 |
219 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) | 220 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) |
220 IPC_STRUCT_TRAITS_MEMBER(name) | 221 IPC_STRUCT_TRAITS_MEMBER(name) |
221 IPC_STRUCT_TRAITS_MEMBER(value) | 222 IPC_STRUCT_TRAITS_MEMBER(value) |
222 IPC_STRUCT_TRAITS_MEMBER(domain) | 223 IPC_STRUCT_TRAITS_MEMBER(domain) |
223 IPC_STRUCT_TRAITS_MEMBER(path) | 224 IPC_STRUCT_TRAITS_MEMBER(path) |
224 IPC_STRUCT_TRAITS_MEMBER(expires) | 225 IPC_STRUCT_TRAITS_MEMBER(expires) |
225 IPC_STRUCT_TRAITS_MEMBER(http_only) | 226 IPC_STRUCT_TRAITS_MEMBER(http_only) |
226 IPC_STRUCT_TRAITS_MEMBER(secure) | 227 IPC_STRUCT_TRAITS_MEMBER(secure) |
(...skipping 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 // Since the browser keeps handles to the allocated transport DIBs, this | 1628 // Since the browser keeps handles to the allocated transport DIBs, this |
1628 // message is sent to tell the browser that it may release them when the | 1629 // message is sent to tell the browser that it may release them when the |
1629 // renderer is finished with them. | 1630 // renderer is finished with them. |
1630 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1631 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
1631 TransportDIB::Id /* DIB id */) | 1632 TransportDIB::Id /* DIB id */) |
1632 #endif | 1633 #endif |
1633 | 1634 |
1634 // Adding a new message? Stick to the sort order above: first platform | 1635 // Adding a new message? Stick to the sort order above: first platform |
1635 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1636 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1636 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1637 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |