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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 179 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
180 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 180 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
181 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 181 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
182 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 182 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
183 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 183 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
184 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 184 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
185 IPC_STRUCT_TRAITS_MEMBER(dart_enabled) | 185 IPC_STRUCT_TRAITS_MEMBER(dart_enabled) |
186 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 186 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
187 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 187 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
188 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 188 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
| 189 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
189 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 190 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
190 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 191 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
191 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) | 192 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) |
192 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) | 193 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) |
193 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) | 194 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) |
194 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 195 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
195 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) | 196 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) |
196 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 197 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
197 IPC_STRUCT_TRAITS_MEMBER(java_enabled) | 198 IPC_STRUCT_TRAITS_MEMBER(java_enabled) |
198 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) | 199 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) |
(...skipping 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1975 media::MediaLogEvent /* event */) | 1976 media::MediaLogEvent /* event */) |
1976 | 1977 |
1977 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1978 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1978 // being sent back. | 1979 // being sent back. |
1979 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1980 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1980 | 1981 |
1981 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1982 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1982 // whenever the mouse is unlocked (which may or may not be caused by | 1983 // whenever the mouse is unlocked (which may or may not be caused by |
1983 // ViewHostMsg_UnlockMouse). | 1984 // ViewHostMsg_UnlockMouse). |
1984 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1985 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |