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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) | 203 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) |
204 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 204 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) |
205 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 205 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) |
206 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 206 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) |
207 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 207 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) |
208 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) | 208 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) |
209 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) | 209 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) |
210 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) | 210 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) |
211 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) | 211 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) |
212 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) | 212 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) |
| 213 IPC_STRUCT_TRAITS_MEMBER(css_variables_enabled) |
213 IPC_STRUCT_TRAITS_MEMBER(device_supports_touch) | 214 IPC_STRUCT_TRAITS_MEMBER(device_supports_touch) |
214 IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse) | 215 IPC_STRUCT_TRAITS_MEMBER(device_supports_mouse) |
215 #if !defined(WEBCOMPOSITOR_OWNS_SETTINGS) | 216 #if !defined(WEBCOMPOSITOR_OWNS_SETTINGS) |
216 IPC_STRUCT_TRAITS_MEMBER(threaded_animation_enabled) | 217 IPC_STRUCT_TRAITS_MEMBER(threaded_animation_enabled) |
217 IPC_STRUCT_TRAITS_MEMBER(partial_swap_enabled) | 218 IPC_STRUCT_TRAITS_MEMBER(partial_swap_enabled) |
218 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) | 219 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) |
219 #endif | 220 #endif |
220 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) | 221 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) |
221 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) | 222 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) |
222 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) | 223 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) |
(...skipping 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2161 // (according to the value of is_hung). The browser can give the user the | 2162 // (according to the value of is_hung). The browser can give the user the |
2162 // option of killing the plugin. | 2163 // option of killing the plugin. |
2163 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2164 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2164 int /* plugin_child_id */, | 2165 int /* plugin_child_id */, |
2165 FilePath /* path */, | 2166 FilePath /* path */, |
2166 bool /* is_hung */) | 2167 bool /* is_hung */) |
2167 | 2168 |
2168 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2169 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2169 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2170 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2170 int /* orientation */) | 2171 int /* orientation */) |
OLD | NEW |