| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) | 168 IPC_STRUCT_TRAITS_MEMBER(hyperlink_auditing_enabled) |
| 169 IPC_STRUCT_TRAITS_MEMBER(is_online) | 169 IPC_STRUCT_TRAITS_MEMBER(is_online) |
| 170 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_enabled) | 170 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_enabled) |
| 171 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_location) | 171 IPC_STRUCT_TRAITS_MEMBER(user_style_sheet_location) |
| 172 IPC_STRUCT_TRAITS_MEMBER(author_and_user_styles_enabled) | 172 IPC_STRUCT_TRAITS_MEMBER(author_and_user_styles_enabled) |
| 173 IPC_STRUCT_TRAITS_MEMBER(frame_flattening_enabled) | 173 IPC_STRUCT_TRAITS_MEMBER(frame_flattening_enabled) |
| 174 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) | 174 IPC_STRUCT_TRAITS_MEMBER(allow_universal_access_from_file_urls) |
| 175 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) | 175 IPC_STRUCT_TRAITS_MEMBER(allow_file_access_from_file_urls) |
| 176 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) | 176 IPC_STRUCT_TRAITS_MEMBER(webaudio_enabled) |
| 177 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) | 177 IPC_STRUCT_TRAITS_MEMBER(experimental_webgl_enabled) |
| 178 IPC_STRUCT_TRAITS_MEMBER(flash_3d_enabled) |
| 179 IPC_STRUCT_TRAITS_MEMBER(flash_stage3d_enabled) |
| 178 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) | 180 IPC_STRUCT_TRAITS_MEMBER(gl_multisampling_enabled) |
| 179 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) | 181 IPC_STRUCT_TRAITS_MEMBER(privileged_webgl_extensions_enabled) |
| 180 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) | 182 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_borders) |
| 181 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) | 183 IPC_STRUCT_TRAITS_MEMBER(show_composited_layer_tree) |
| 182 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) | 184 IPC_STRUCT_TRAITS_MEMBER(show_fps_counter) |
| 183 IPC_STRUCT_TRAITS_MEMBER(show_paint_rects) | 185 IPC_STRUCT_TRAITS_MEMBER(show_paint_rects) |
| 184 IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled) | 186 IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled) |
| 185 IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled) | 187 IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled) |
| 186 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) | 188 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) |
| 187 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) | 189 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) |
| (...skipping 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2090 // (according to the value of is_hung). The browser can give the user the | 2092 // (according to the value of is_hung). The browser can give the user the |
| 2091 // option of killing the plugin. | 2093 // option of killing the plugin. |
| 2092 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2094 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2093 int /* plugin_child_id */, | 2095 int /* plugin_child_id */, |
| 2094 FilePath /* path */, | 2096 FilePath /* path */, |
| 2095 bool /* is_hung */) | 2097 bool /* is_hung */) |
| 2096 | 2098 |
| 2097 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2099 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2098 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2100 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2099 int /* orientation */) | 2101 int /* orientation */) |
| OLD | NEW |