| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 316 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
| 317 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 317 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
| 318 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 318 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
| 319 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 319 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
| 320 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) | 320 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) |
| 321 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 321 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
| 322 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 322 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
| 323 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 323 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 324 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 324 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
| 325 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 325 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
| 326 IPC_STRUCT_TRAITS_MEMBER(disable_input_throttle) |
| 326 IPC_STRUCT_TRAITS_END() | 327 IPC_STRUCT_TRAITS_END() |
| 327 | 328 |
| 328 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) | 329 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) |
| 329 IPC_STRUCT_TRAITS_MEMBER(security_style) | 330 IPC_STRUCT_TRAITS_MEMBER(security_style) |
| 330 IPC_STRUCT_TRAITS_MEMBER(cert_id) | 331 IPC_STRUCT_TRAITS_MEMBER(cert_id) |
| 331 IPC_STRUCT_TRAITS_MEMBER(cert_status) | 332 IPC_STRUCT_TRAITS_MEMBER(cert_status) |
| 332 IPC_STRUCT_TRAITS_MEMBER(security_bits) | 333 IPC_STRUCT_TRAITS_MEMBER(security_bits) |
| 333 IPC_STRUCT_TRAITS_MEMBER(connection_status) | 334 IPC_STRUCT_TRAITS_MEMBER(connection_status) |
| 334 IPC_STRUCT_TRAITS_MEMBER(content_status) | 335 IPC_STRUCT_TRAITS_MEMBER(content_status) |
| 335 IPC_STRUCT_TRAITS_END() | 336 IPC_STRUCT_TRAITS_END() |
| (...skipping 1845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2181 // (according to the value of is_hung). The browser can give the user the | 2182 // (according to the value of is_hung). The browser can give the user the |
| 2182 // option of killing the plugin. | 2183 // option of killing the plugin. |
| 2183 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2184 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2184 int /* plugin_child_id */, | 2185 int /* plugin_child_id */, |
| 2185 FilePath /* path */, | 2186 FilePath /* path */, |
| 2186 bool /* is_hung */) | 2187 bool /* is_hung */) |
| 2187 | 2188 |
| 2188 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2189 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
| 2189 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2190 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
| 2190 int /* orientation */) | 2191 int /* orientation */) |
| OLD | NEW |