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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 IPC_STRUCT_TRAITS_MEMBER(track_color) | 234 IPC_STRUCT_TRAITS_MEMBER(track_color) |
235 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 235 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
236 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 236 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
237 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 237 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
238 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 238 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
239 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 239 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
240 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 240 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
241 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) | 241 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) |
242 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 242 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
243 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 243 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
244 IPC_STRUCT_TRAITS_MEMBER(enable_webrtc_multiple_routes) | 244 IPC_STRUCT_TRAITS_MEMBER(webrtc_ip_handling_policy) |
245 IPC_STRUCT_TRAITS_MEMBER(enable_webrtc_nonproxied_udp) | |
246 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 245 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
247 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 246 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
248 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 247 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
249 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 248 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
250 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 249 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
251 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) | 250 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
252 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) | 251 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) |
253 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) | 252 IPC_STRUCT_TRAITS_MEMBER(use_video_overlay_for_embedded_encrypted_video) |
254 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) | 253 IPC_STRUCT_TRAITS_MEMBER(use_view_overlay_for_all_video) |
255 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) | 254 IPC_STRUCT_TRAITS_MEMBER(network_contry_iso) |
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 // Instructs the browser to start plugin IME. | 1379 // Instructs the browser to start plugin IME. |
1381 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1380 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
1382 | 1381 |
1383 // Receives content of a web page as plain text. | 1382 // Receives content of a web page as plain text. |
1384 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); | 1383 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); |
1385 #endif | 1384 #endif |
1386 | 1385 |
1387 // Adding a new message? Stick to the sort order above: first platform | 1386 // Adding a new message? Stick to the sort order above: first platform |
1388 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1387 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1389 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1388 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |