| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 217 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
| 218 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 218 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
| 219 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 219 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
| 220 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 220 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
| 221 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) | 221 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) |
| 222 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 222 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
| 223 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 223 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
| 224 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) | 224 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) |
| 225 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 225 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 226 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 226 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
| 227 IPC_STRUCT_TRAITS_MEMBER(disable_webrtc_multiple_routes) |
| 227 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 228 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
| 228 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 229 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
| 229 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 230 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
| 230 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 231 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
| 231 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 232 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
| 232 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 233 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
| 233 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 234 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
| 234 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 235 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
| 235 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) | 236 IPC_STRUCT_TRAITS_MEMBER(caption_font_family_name) |
| 236 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) | 237 IPC_STRUCT_TRAITS_MEMBER(caption_font_height) |
| (...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1643 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1644 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 1644 // for details. | 1645 // for details. |
| 1645 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1646 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 1646 LOGFONT /* font_data */, | 1647 LOGFONT /* font_data */, |
| 1647 base::string16 /* characters */) | 1648 base::string16 /* characters */) |
| 1648 #endif | 1649 #endif |
| 1649 | 1650 |
| 1650 // Adding a new message? Stick to the sort order above: first platform | 1651 // Adding a new message? Stick to the sort order above: first platform |
| 1651 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1652 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1652 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1653 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |