| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 205 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) |
| 206 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 206 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) |
| 207 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 207 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) |
| 208 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 208 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) |
| 209 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 209 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) |
| 210 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) | 210 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) |
| 211 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) | 211 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) |
| 212 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) | 212 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) |
| 213 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) | 213 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) |
| 214 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) | 214 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) |
| 215 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) |
| 215 IPC_STRUCT_TRAITS_END() | 216 IPC_STRUCT_TRAITS_END() |
| 216 | 217 |
| 217 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 218 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
| 218 IPC_STRUCT_TRAITS_MEMBER(label) | 219 IPC_STRUCT_TRAITS_MEMBER(label) |
| 219 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 220 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
| 220 IPC_STRUCT_TRAITS_MEMBER(type) | 221 IPC_STRUCT_TRAITS_MEMBER(type) |
| 221 IPC_STRUCT_TRAITS_MEMBER(action) | 222 IPC_STRUCT_TRAITS_MEMBER(action) |
| 222 IPC_STRUCT_TRAITS_MEMBER(rtl) | 223 IPC_STRUCT_TRAITS_MEMBER(rtl) |
| 223 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 224 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
| 224 IPC_STRUCT_TRAITS_MEMBER(enabled) | 225 IPC_STRUCT_TRAITS_MEMBER(enabled) |
| (...skipping 1764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1989 // have a javascript send a native value (string, number, boolean) to the | 1990 // have a javascript send a native value (string, number, boolean) to the |
| 1990 // listener in Cpp. (DomAutomationController) | 1991 // listener in Cpp. (DomAutomationController) |
| 1991 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, | 1992 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, |
| 1992 std::string /* json_string */, | 1993 std::string /* json_string */, |
| 1993 int /* automation_id */) | 1994 int /* automation_id */) |
| 1994 | 1995 |
| 1995 // Enable or disable inverting of web content pixels, for users who prefer | 1996 // Enable or disable inverting of web content pixels, for users who prefer |
| 1996 // white-on-black. | 1997 // white-on-black. |
| 1997 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, | 1998 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, |
| 1998 bool /* invert */) | 1999 bool /* invert */) |
| OLD | NEW |