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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 144 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
145 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 145 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
146 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) | 146 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) |
147 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 147 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
148 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 148 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
149 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 149 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
150 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 150 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
151 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 151 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
152 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 152 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
153 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 153 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
154 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | |
155 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 154 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
156 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 155 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
157 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) | 156 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) |
158 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) | 157 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) |
159 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) | 158 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) |
160 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 159 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
161 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) | 160 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) |
162 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 161 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
163 IPC_STRUCT_TRAITS_MEMBER(java_enabled) | 162 IPC_STRUCT_TRAITS_MEMBER(java_enabled) |
164 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) | 163 IPC_STRUCT_TRAITS_MEMBER(allow_scripts_to_close_windows) |
(...skipping 1825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1990 // have a javascript send a native value (string, number, boolean) to the | 1989 // have a javascript send a native value (string, number, boolean) to the |
1991 // listener in Cpp. (DomAutomationController) | 1990 // listener in Cpp. (DomAutomationController) |
1992 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, | 1991 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, |
1993 std::string /* json_string */, | 1992 std::string /* json_string */, |
1994 int /* automation_id */) | 1993 int /* automation_id */) |
1995 | 1994 |
1996 // Enable or disable inverting of web content pixels, for users who prefer | 1995 // Enable or disable inverting of web content pixels, for users who prefer |
1997 // white-on-black. | 1996 // white-on-black. |
1998 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, | 1997 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, |
1999 bool /* invert */) | 1998 bool /* invert */) |
OLD | NEW |