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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 198 IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) |
199 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 199 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) |
200 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 200 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) |
201 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 201 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) |
202 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) | 202 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) |
203 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) | 203 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) |
204 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) | 204 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled) |
205 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) | 205 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) |
206 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) | 206 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) |
207 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) | 207 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) |
| 208 IPC_STRUCT_TRAITS_MEMBER(default_tile_width) |
| 209 IPC_STRUCT_TRAITS_MEMBER(default_tile_height) |
| 210 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_width) |
| 211 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) |
208 IPC_STRUCT_TRAITS_END() | 212 IPC_STRUCT_TRAITS_END() |
209 | 213 |
210 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 214 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
211 IPC_STRUCT_TRAITS_MEMBER(label) | 215 IPC_STRUCT_TRAITS_MEMBER(label) |
212 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 216 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
213 IPC_STRUCT_TRAITS_MEMBER(type) | 217 IPC_STRUCT_TRAITS_MEMBER(type) |
214 IPC_STRUCT_TRAITS_MEMBER(action) | 218 IPC_STRUCT_TRAITS_MEMBER(action) |
215 IPC_STRUCT_TRAITS_MEMBER(rtl) | 219 IPC_STRUCT_TRAITS_MEMBER(rtl) |
216 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 220 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
217 IPC_STRUCT_TRAITS_MEMBER(enabled) | 221 IPC_STRUCT_TRAITS_MEMBER(enabled) |
(...skipping 1832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2050 // (according to the value of is_hung). The browser can give the user the | 2054 // (according to the value of is_hung). The browser can give the user the |
2051 // option of killing the plugin. | 2055 // option of killing the plugin. |
2052 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2056 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2053 int /* plugin_child_id */, | 2057 int /* plugin_child_id */, |
2054 FilePath /* path */, | 2058 FilePath /* path */, |
2055 bool /* is_hung */) | 2059 bool /* is_hung */) |
2056 | 2060 |
2057 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2061 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2058 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2062 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2059 int /* orientation */) | 2063 int /* orientation */) |
OLD | NEW |