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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 IPC_STRUCT_TRAITS_MEMBER(webrtc_udp_min_port) | 240 IPC_STRUCT_TRAITS_MEMBER(webrtc_udp_min_port) |
241 IPC_STRUCT_TRAITS_MEMBER(webrtc_udp_max_port) | 241 IPC_STRUCT_TRAITS_MEMBER(webrtc_udp_max_port) |
242 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 242 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
243 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 243 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
244 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 244 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
245 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 245 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
246 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 246 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
247 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 247 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
248 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 248 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
249 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) | 249 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) |
| 250 #if defined(OS_LINUX) |
| 251 IPC_STRUCT_TRAITS_MEMBER(system_font_family_name) |
| 252 #endif |
250 #if defined(OS_WIN) | 253 #if defined(OS_WIN) |
251 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) | 254 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) |
252 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) | 255 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) |
253 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_family_name) | 256 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_family_name) |
254 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_height) | 257 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_height) |
255 IPC_STRUCT_TRAITS_MEMBER(menu_font_family_name) | 258 IPC_STRUCT_TRAITS_MEMBER(menu_font_family_name) |
256 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) | 259 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) |
257 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) | 260 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) |
258 IPC_STRUCT_TRAITS_MEMBER(status_font_height) | 261 IPC_STRUCT_TRAITS_MEMBER(status_font_height) |
259 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) | 262 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) |
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 int /* y */) | 1159 int /* y */) |
1157 | 1160 |
1158 #elif defined(OS_MACOSX) | 1161 #elif defined(OS_MACOSX) |
1159 // Receives content of a web page as plain text. | 1162 // Receives content of a web page as plain text. |
1160 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1163 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
1161 #endif | 1164 #endif |
1162 | 1165 |
1163 // Adding a new message? Stick to the sort order above: first platform | 1166 // Adding a new message? Stick to the sort order above: first platform |
1164 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1167 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1165 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1168 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |