Chromium Code Reviews| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 204 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) | 204 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) |
| 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(force_enable_page_scale) | |
|
jamesr
2012/05/24 21:02:37
if you move the declaration in WebPreferences plea
sadrul
2012/05/24 21:10:16
Done.
| |
| 214 IPC_STRUCT_TRAITS_END() | 215 IPC_STRUCT_TRAITS_END() |
| 215 | 216 |
| 216 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 217 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
| 217 IPC_STRUCT_TRAITS_MEMBER(label) | 218 IPC_STRUCT_TRAITS_MEMBER(label) |
| 218 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 219 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
| 219 IPC_STRUCT_TRAITS_MEMBER(type) | 220 IPC_STRUCT_TRAITS_MEMBER(type) |
| 220 IPC_STRUCT_TRAITS_MEMBER(action) | 221 IPC_STRUCT_TRAITS_MEMBER(action) |
| 221 IPC_STRUCT_TRAITS_MEMBER(rtl) | 222 IPC_STRUCT_TRAITS_MEMBER(rtl) |
| 222 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 223 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
| 223 IPC_STRUCT_TRAITS_MEMBER(enabled) | 224 IPC_STRUCT_TRAITS_MEMBER(enabled) |
| (...skipping 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2057 // (according to the value of is_hung). The browser can give the user the | 2058 // (according to the value of is_hung). The browser can give the user the |
| 2058 // option of killing the plugin. | 2059 // option of killing the plugin. |
| 2059 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2060 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2060 int /* plugin_child_id */, | 2061 int /* plugin_child_id */, |
| 2061 FilePath /* path */, | 2062 FilePath /* path */, |
| 2062 bool /* is_hung */) | 2063 bool /* is_hung */) |
| 2063 | 2064 |
| 2064 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2065 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2065 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2066 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2066 int /* orientation */) | 2067 int /* orientation */) |
| OLD | NEW |