| 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(visual_word_movement_enabled) | 205 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) |
| 206 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) | 206 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) |
| 207 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) | 207 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) |
| 208 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) | 208 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) |
| 209 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) | 209 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) |
| 210 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) | 210 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) |
| 211 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) | 211 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) |
| 212 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) | 212 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) |
| 213 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) | 213 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) |
| 214 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) | 214 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) |
| 215 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_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 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2073 // (according to the value of is_hung). The browser can give the user the | 2074 // (according to the value of is_hung). The browser can give the user the |
| 2074 // option of killing the plugin. | 2075 // option of killing the plugin. |
| 2075 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2076 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2076 int /* plugin_child_id */, | 2077 int /* plugin_child_id */, |
| 2077 FilePath /* path */, | 2078 FilePath /* path */, |
| 2078 bool /* is_hung */) | 2079 bool /* is_hung */) |
| 2079 | 2080 |
| 2080 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2081 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2081 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2082 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2082 int /* orientation */) | 2083 int /* orientation */) |
| OLD | NEW |