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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 IPC_STRUCT_TRAITS_MEMBER(is_online) | 216 IPC_STRUCT_TRAITS_MEMBER(is_online) |
217 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_enabled) | 217 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_enabled) |
218 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_location) | 218 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_location) |
219 IPC_STRUCT_TRAITS_MEMBER(author_and_user_styles_enabled) | 219 IPC_STRUCT_TRAITS_MEMBER(author_and_user_styles_enabled) |
220 IPC_STRUCT_TRAITS_MEMBER(frame_flattening_enabled) | 220 IPC_STRUCT_TRAITS_MEMBER(frame_flattening_enabled) |
221 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) | 221 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) |
222 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) | 222 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) |
223 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) | 223 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) |
224 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 224 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
225 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) | 225 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) |
| 226 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) |
226 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) | 227 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) |
227 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) | 228 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) |
228 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) | 229 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) |
229 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) | 230 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) |
230 IPC_STRUCT_TRAITS_MEMBER(threaded_compositing_enabled) | 231 IPC_STRUCT_TRAITS_MEMBER(threaded_compositing_enabled) |
231 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) | 232 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) |
232 IPC_STRUCT_TRAITS_MEMBER(allow_webui_compositing) | 233 IPC_STRUCT_TRAITS_MEMBER(allow_webui_compositing) |
233 IPC_STRUCT_TRAITS_MEMBER(composite_to_texture_enabled) | 234 IPC_STRUCT_TRAITS_MEMBER(composite_to_texture_enabled) |
234 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) | 235 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) |
235 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) | 236 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) |
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1953 media::MediaLogEvent /* event */) | 1954 media::MediaLogEvent /* event */) |
1954 | 1955 |
1955 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1956 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1956 // being sent back. | 1957 // being sent back. |
1957 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1958 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1958 | 1959 |
1959 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1960 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1960 // whenever the mouse is unlocked (which may or may not be caused by | 1961 // whenever the mouse is unlocked (which may or may not be caused by |
1961 // ViewHostMsg_UnlockMouse). | 1962 // ViewHostMsg_UnlockMouse). |
1962 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1963 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |