| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) | 314 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) |
| 315 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) | 315 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) |
| 316 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) | 316 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) |
| 317 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 317 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
| 318 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) | 318 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) |
| 319 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) | 319 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) |
| 320 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) | 320 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) |
| 321 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) | 321 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) |
| 322 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) | 322 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) |
| 323 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) | 323 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) |
| 324 IPC_STRUCT_TRAITS_MEMBER(allow_webui_compositing) |
| 324 IPC_STRUCT_TRAITS_MEMBER(composite_to_texture_enabled) | 325 IPC_STRUCT_TRAITS_MEMBER(composite_to_texture_enabled) |
| 325 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) | 326 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) |
| 326 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) | 327 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) |
| 327 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) | 328 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) |
| 328 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) | 329 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) |
| 329 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) | 330 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) |
| 330 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 331 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) |
| 331 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 332 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) |
| 332 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 333 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) |
| 333 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 334 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) |
| (...skipping 1663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1997 | 1998 |
| 1998 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, | 1999 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, |
| 1999 std::vector<GURL> /* all savable resource links */, | 2000 std::vector<GURL> /* all savable resource links */, |
| 2000 std::vector<GURL> /* all referrers of resource links */, | 2001 std::vector<GURL> /* all referrers of resource links */, |
| 2001 std::vector<GURL> /* all frame links */) | 2002 std::vector<GURL> /* all frame links */) |
| 2002 | 2003 |
| 2003 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, | 2004 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, |
| 2004 GURL /* frame's url */, | 2005 GURL /* frame's url */, |
| 2005 std::string /* data buffer */, | 2006 std::string /* data buffer */, |
| 2006 int32 /* complete status */) | 2007 int32 /* complete status */) |
| OLD | NEW |