| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 IPC_STRUCT_TRAITS_MEMBER(additional_param_names) | 455 IPC_STRUCT_TRAITS_MEMBER(additional_param_names) |
| 456 IPC_STRUCT_TRAITS_MEMBER(additional_param_values) | 456 IPC_STRUCT_TRAITS_MEMBER(additional_param_values) |
| 457 IPC_STRUCT_TRAITS_END() | 457 IPC_STRUCT_TRAITS_END() |
| 458 | 458 |
| 459 IPC_STRUCT_TRAITS_BEGIN(webkit::WebPluginInfo) | 459 IPC_STRUCT_TRAITS_BEGIN(webkit::WebPluginInfo) |
| 460 IPC_STRUCT_TRAITS_MEMBER(name) | 460 IPC_STRUCT_TRAITS_MEMBER(name) |
| 461 IPC_STRUCT_TRAITS_MEMBER(path) | 461 IPC_STRUCT_TRAITS_MEMBER(path) |
| 462 IPC_STRUCT_TRAITS_MEMBER(version) | 462 IPC_STRUCT_TRAITS_MEMBER(version) |
| 463 IPC_STRUCT_TRAITS_MEMBER(desc) | 463 IPC_STRUCT_TRAITS_MEMBER(desc) |
| 464 IPC_STRUCT_TRAITS_MEMBER(mime_types) | 464 IPC_STRUCT_TRAITS_MEMBER(mime_types) |
| 465 IPC_STRUCT_TRAITS_MEMBER(enabled) | |
| 466 IPC_STRUCT_TRAITS_MEMBER(type) | 465 IPC_STRUCT_TRAITS_MEMBER(type) |
| 467 IPC_STRUCT_TRAITS_END() | 466 IPC_STRUCT_TRAITS_END() |
| 468 | 467 |
| 469 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) | 468 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) |
| 470 IPC_STRUCT_TRAITS_MEMBER(id) | 469 IPC_STRUCT_TRAITS_MEMBER(id) |
| 471 IPC_STRUCT_TRAITS_MEMBER(type) | 470 IPC_STRUCT_TRAITS_MEMBER(type) |
| 472 IPC_STRUCT_TRAITS_MEMBER(params) | 471 IPC_STRUCT_TRAITS_MEMBER(params) |
| 473 IPC_STRUCT_TRAITS_MEMBER(time) | 472 IPC_STRUCT_TRAITS_MEMBER(time) |
| 474 IPC_STRUCT_TRAITS_END() | 473 IPC_STRUCT_TRAITS_END() |
| 475 | 474 |
| (...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2125 int32 /* complete status */) | 2124 int32 /* complete status */) |
| 2126 | 2125 |
| 2127 // Request updated information about the client firewall traversal policy. | 2126 // Request updated information about the client firewall traversal policy. |
| 2128 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2127 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
| 2129 // being sent back. | 2128 // being sent back. |
| 2130 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2129 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
| 2131 | 2130 |
| 2132 // Notifies the browser of an event occurring in the media pipeline. | 2131 // Notifies the browser of an event occurring in the media pipeline. |
| 2133 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2132 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
| 2134 media::MediaLogEvent /* event */) | 2133 media::MediaLogEvent /* event */) |
| OLD | NEW |