| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) | 201 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) |
| 202 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 202 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
| 203 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 203 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
| 204 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) | 204 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) |
| 205 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 205 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 206 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 206 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
| 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) | |
| 212 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) | |
| 213 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 211 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
| 214 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 212 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
| 215 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 213 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
| 216 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 214 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
| 217 IPC_STRUCT_TRAITS_END() | 215 IPC_STRUCT_TRAITS_END() |
| 218 | 216 |
| 219 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) | 217 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) |
| 220 IPC_STRUCT_TRAITS_MEMBER(name) | 218 IPC_STRUCT_TRAITS_MEMBER(name) |
| 221 IPC_STRUCT_TRAITS_MEMBER(value) | 219 IPC_STRUCT_TRAITS_MEMBER(value) |
| 222 IPC_STRUCT_TRAITS_MEMBER(domain) | 220 IPC_STRUCT_TRAITS_MEMBER(domain) |
| (...skipping 1410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 // Since the browser keeps handles to the allocated transport DIBs, this | 1631 // Since the browser keeps handles to the allocated transport DIBs, this |
| 1634 // message is sent to tell the browser that it may release them when the | 1632 // message is sent to tell the browser that it may release them when the |
| 1635 // renderer is finished with them. | 1633 // renderer is finished with them. |
| 1636 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1634 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1637 TransportDIB::Id /* DIB id */) | 1635 TransportDIB::Id /* DIB id */) |
| 1638 #endif | 1636 #endif |
| 1639 | 1637 |
| 1640 // Adding a new message? Stick to the sort order above: first platform | 1638 // Adding a new message? Stick to the sort order above: first platform |
| 1641 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1639 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1642 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1640 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |