| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 IPC_STRUCT_TRAITS_MEMBER(partial_swap_enabled) | 201 IPC_STRUCT_TRAITS_MEMBER(partial_swap_enabled) |
| 202 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 202 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) |
| 203 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 203 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) |
| 204 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 204 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) |
| 205 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 205 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) |
| 206 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 206 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) |
| 207 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) | 207 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) |
| 208 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) | 208 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) |
| 209 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) | 209 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) |
| 210 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) | 210 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) |
| 211 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) |
| 211 IPC_STRUCT_TRAITS_END() | 212 IPC_STRUCT_TRAITS_END() |
| 212 | 213 |
| 213 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 214 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
| 214 IPC_STRUCT_TRAITS_MEMBER(label) | 215 IPC_STRUCT_TRAITS_MEMBER(label) |
| 215 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 216 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
| 216 IPC_STRUCT_TRAITS_MEMBER(type) | 217 IPC_STRUCT_TRAITS_MEMBER(type) |
| 217 IPC_STRUCT_TRAITS_MEMBER(action) | 218 IPC_STRUCT_TRAITS_MEMBER(action) |
| 218 IPC_STRUCT_TRAITS_MEMBER(rtl) | 219 IPC_STRUCT_TRAITS_MEMBER(rtl) |
| 219 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 220 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
| 220 IPC_STRUCT_TRAITS_MEMBER(enabled) | 221 IPC_STRUCT_TRAITS_MEMBER(enabled) |
| (...skipping 1723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1944 // have a javascript send a native value (string, number, boolean) to the | 1945 // have a javascript send a native value (string, number, boolean) to the |
| 1945 // listener in Cpp. (DomAutomationController) | 1946 // listener in Cpp. (DomAutomationController) |
| 1946 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, | 1947 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, |
| 1947 std::string /* json_string */, | 1948 std::string /* json_string */, |
| 1948 int /* automation_id */) | 1949 int /* automation_id */) |
| 1949 | 1950 |
| 1950 // Enable or disable inverting of web content pixels, for users who prefer | 1951 // Enable or disable inverting of web content pixels, for users who prefer |
| 1951 // white-on-black. | 1952 // white-on-black. |
| 1952 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, | 1953 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, |
| 1953 bool /* invert */) | 1954 bool /* invert */) |
| OLD | NEW |