| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 258 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
| 259 IPC_STRUCT_TRAITS_MEMBER(webrtc_ip_handling_policy) | 259 IPC_STRUCT_TRAITS_MEMBER(webrtc_ip_handling_policy) |
| 260 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 260 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
| 261 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 261 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
| 262 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 262 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
| 263 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 263 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
| 264 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 264 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
| 265 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 265 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
| 266 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 266 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
| 267 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) | 267 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) |
| 268 IPC_STRUCT_TRAITS_MEMBER(hw_secure_codec_allowed) |
| 268 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) | 269 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) |
| 269 #if defined(OS_WIN) | 270 #if defined(OS_WIN) |
| 270 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) | 271 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) |
| 271 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) | 272 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) |
| 272 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_family_name) | 273 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_family_name) |
| 273 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_height) | 274 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_height) |
| 274 IPC_STRUCT_TRAITS_MEMBER(menu_font_family_name) | 275 IPC_STRUCT_TRAITS_MEMBER(menu_font_family_name) |
| 275 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) | 276 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) |
| 276 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) | 277 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) |
| 277 IPC_STRUCT_TRAITS_MEMBER(status_font_height) | 278 IPC_STRUCT_TRAITS_MEMBER(status_font_height) |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 int /* y */) | 1241 int /* y */) |
| 1241 | 1242 |
| 1242 #elif defined(OS_MACOSX) | 1243 #elif defined(OS_MACOSX) |
| 1243 // Receives content of a web page as plain text. | 1244 // Receives content of a web page as plain text. |
| 1244 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1245 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1245 #endif | 1246 #endif |
| 1246 | 1247 |
| 1247 // Adding a new message? Stick to the sort order above: first platform | 1248 // Adding a new message? Stick to the sort order above: first platform |
| 1248 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1249 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1249 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1250 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |