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/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) | 181 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) |
182 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 182 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
183 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) | 183 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) |
184 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) | 184 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) |
185 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) | 185 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) |
186 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) | 186 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) |
187 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) | 187 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) |
188 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) | 188 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) |
189 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) | 189 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) |
190 IPC_STRUCT_TRAITS_MEMBER(show_paint_rects) | 190 IPC_STRUCT_TRAITS_MEMBER(show_paint_rects) |
| 191 IPC_STRUCT_TRAITS_MEMBER(render_vsync_enabled) |
191 IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled) | 192 IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled) |
192 IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled) | 193 IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled) |
193 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) | 194 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) |
194 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) | 195 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) |
195 IPC_STRUCT_TRAITS_MEMBER(fixed_position_compositing_enabled) | 196 IPC_STRUCT_TRAITS_MEMBER(fixed_position_compositing_enabled) |
196 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) | 197 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) |
197 IPC_STRUCT_TRAITS_MEMBER(deferred_2d_canvas_enabled) | 198 IPC_STRUCT_TRAITS_MEMBER(deferred_2d_canvas_enabled) |
198 IPC_STRUCT_TRAITS_MEMBER(accelerated_painting_enabled) | 199 IPC_STRUCT_TRAITS_MEMBER(accelerated_painting_enabled) |
199 IPC_STRUCT_TRAITS_MEMBER(accelerated_filters_enabled) | 200 IPC_STRUCT_TRAITS_MEMBER(accelerated_filters_enabled) |
200 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) | 201 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) |
(...skipping 1965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2166 // (according to the value of is_hung). The browser can give the user the | 2167 // (according to the value of is_hung). The browser can give the user the |
2167 // option of killing the plugin. | 2168 // option of killing the plugin. |
2168 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2169 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2169 int /* plugin_child_id */, | 2170 int /* plugin_child_id */, |
2170 FilePath /* path */, | 2171 FilePath /* path */, |
2171 bool /* is_hung */) | 2172 bool /* is_hung */) |
2172 | 2173 |
2173 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2174 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2174 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2175 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2175 int /* orientation */) | 2176 int /* orientation */) |
OLD | NEW |