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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 226 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
227 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 227 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
228 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 228 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
229 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 229 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
230 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 230 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
231 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 231 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
232 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) | 232 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) |
233 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 233 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
234 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 234 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
235 IPC_STRUCT_TRAITS_MEMBER(webrtc_ip_handling_policy) | 235 IPC_STRUCT_TRAITS_MEMBER(webrtc_ip_handling_policy) |
| 236 IPC_STRUCT_TRAITS_MEMBER(webrtc_udp_min_port) |
| 237 IPC_STRUCT_TRAITS_MEMBER(webrtc_udp_max_port) |
236 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 238 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
237 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 239 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
238 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 240 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
239 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 241 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
240 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 242 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
241 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 243 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
242 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 244 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
243 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) | 245 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) |
244 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) | 246 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) |
245 #if defined(OS_WIN) | 247 #if defined(OS_WIN) |
(...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1180 int /* y */) | 1182 int /* y */) |
1181 | 1183 |
1182 #elif defined(OS_MACOSX) | 1184 #elif defined(OS_MACOSX) |
1183 // Receives content of a web page as plain text. | 1185 // Receives content of a web page as plain text. |
1184 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1186 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1185 #endif | 1187 #endif |
1186 | 1188 |
1187 // Adding a new message? Stick to the sort order above: first platform | 1189 // Adding a new message? Stick to the sort order above: first platform |
1188 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1190 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1189 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1191 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |