| 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/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) | 222 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) |
| 223 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) | 223 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) |
| 224 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) | 224 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) |
| 225 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 225 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) |
| 226 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 226 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) |
| 227 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 227 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) |
| 228 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 228 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) |
| 229 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 229 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) |
| 230 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) | 230 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) |
| 231 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) | 231 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) |
| 232 IPC_STRUCT_TRAITS_MEMBER(per_tile_drawing_enabled) |
| 232 IPC_STRUCT_TRAITS_END() | 233 IPC_STRUCT_TRAITS_END() |
| 233 | 234 |
| 234 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 235 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
| 235 IPC_STRUCT_TRAITS_MEMBER(label) | 236 IPC_STRUCT_TRAITS_MEMBER(label) |
| 236 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 237 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
| 237 IPC_STRUCT_TRAITS_MEMBER(type) | 238 IPC_STRUCT_TRAITS_MEMBER(type) |
| 238 IPC_STRUCT_TRAITS_MEMBER(action) | 239 IPC_STRUCT_TRAITS_MEMBER(action) |
| 239 IPC_STRUCT_TRAITS_MEMBER(rtl) | 240 IPC_STRUCT_TRAITS_MEMBER(rtl) |
| 240 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 241 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
| 241 IPC_STRUCT_TRAITS_MEMBER(enabled) | 242 IPC_STRUCT_TRAITS_MEMBER(enabled) |
| (...skipping 1710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1952 media::MediaLogEvent /* event */) | 1953 media::MediaLogEvent /* event */) |
| 1953 | 1954 |
| 1954 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1955 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
| 1955 // being sent back. | 1956 // being sent back. |
| 1956 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1957 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
| 1957 | 1958 |
| 1958 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1959 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
| 1959 // whenever the mouse is unlocked (which may or may not be caused by | 1960 // whenever the mouse is unlocked (which may or may not be caused by |
| 1960 // ViewHostMsg_UnlockMouse). | 1961 // ViewHostMsg_UnlockMouse). |
| 1961 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1962 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
| OLD | NEW |