| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 243 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 244 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 244 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
| 245 IPC_STRUCT_TRAITS_MEMBER(enable_webrtc_multiple_routes) | 245 IPC_STRUCT_TRAITS_MEMBER(enable_webrtc_multiple_routes) |
| 246 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 246 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
| 247 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 247 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
| 248 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 248 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
| 249 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 249 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
| 250 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 250 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
| 251 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 251 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
| 252 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 252 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
| 253 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 253 IPC_STRUCT_TRAITS_MEMBER(allow_video_overlay_for_embedded_encrypted_video) |
| 254 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) |
| 254 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) | 255 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) |
| 255 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) | 256 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) |
| 256 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_family_name) | 257 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_family_name) |
| 257 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_height) | 258 IPC_STRUCT_TRAITS_MEMBER(small_caption_font_height) |
| 258 IPC_STRUCT_TRAITS_MEMBER(menu_font_family_name) | 259 IPC_STRUCT_TRAITS_MEMBER(menu_font_family_name) |
| 259 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) | 260 IPC_STRUCT_TRAITS_MEMBER(menu_font_height) |
| 260 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) | 261 IPC_STRUCT_TRAITS_MEMBER(status_font_family_name) |
| 261 IPC_STRUCT_TRAITS_MEMBER(status_font_height) | 262 IPC_STRUCT_TRAITS_MEMBER(status_font_height) |
| 262 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) | 263 IPC_STRUCT_TRAITS_MEMBER(message_font_family_name) |
| 263 IPC_STRUCT_TRAITS_MEMBER(message_font_height) | 264 IPC_STRUCT_TRAITS_MEMBER(message_font_height) |
| (...skipping 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1672 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1673 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 1673 // for details. | 1674 // for details. |
| 1674 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1675 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 1675 LOGFONT /* font_data */, | 1676 LOGFONT /* font_data */, |
| 1676 base::string16 /* characters */) | 1677 base::string16 /* characters */) |
| 1677 #endif | 1678 #endif |
| 1678 | 1679 |
| 1679 // Adding a new message? Stick to the sort order above: first platform | 1680 // Adding a new message? Stick to the sort order above: first platform |
| 1680 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1681 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1681 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1682 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |