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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 IPC_STRUCT_TRAITS_MEMBER(additional_param_names) | 459 IPC_STRUCT_TRAITS_MEMBER(additional_param_names) |
460 IPC_STRUCT_TRAITS_MEMBER(additional_param_values) | 460 IPC_STRUCT_TRAITS_MEMBER(additional_param_values) |
461 IPC_STRUCT_TRAITS_END() | 461 IPC_STRUCT_TRAITS_END() |
462 | 462 |
463 IPC_STRUCT_TRAITS_BEGIN(webkit::WebPluginInfo) | 463 IPC_STRUCT_TRAITS_BEGIN(webkit::WebPluginInfo) |
464 IPC_STRUCT_TRAITS_MEMBER(name) | 464 IPC_STRUCT_TRAITS_MEMBER(name) |
465 IPC_STRUCT_TRAITS_MEMBER(path) | 465 IPC_STRUCT_TRAITS_MEMBER(path) |
466 IPC_STRUCT_TRAITS_MEMBER(version) | 466 IPC_STRUCT_TRAITS_MEMBER(version) |
467 IPC_STRUCT_TRAITS_MEMBER(desc) | 467 IPC_STRUCT_TRAITS_MEMBER(desc) |
468 IPC_STRUCT_TRAITS_MEMBER(mime_types) | 468 IPC_STRUCT_TRAITS_MEMBER(mime_types) |
| 469 IPC_STRUCT_TRAITS_MEMBER(enabled) |
469 IPC_STRUCT_TRAITS_MEMBER(type) | 470 IPC_STRUCT_TRAITS_MEMBER(type) |
470 IPC_STRUCT_TRAITS_END() | 471 IPC_STRUCT_TRAITS_END() |
471 | 472 |
472 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) | 473 IPC_STRUCT_TRAITS_BEGIN(media::MediaLogEvent) |
473 IPC_STRUCT_TRAITS_MEMBER(id) | 474 IPC_STRUCT_TRAITS_MEMBER(id) |
474 IPC_STRUCT_TRAITS_MEMBER(type) | 475 IPC_STRUCT_TRAITS_MEMBER(type) |
475 IPC_STRUCT_TRAITS_MEMBER(params) | 476 IPC_STRUCT_TRAITS_MEMBER(params) |
476 IPC_STRUCT_TRAITS_MEMBER(time) | 477 IPC_STRUCT_TRAITS_MEMBER(time) |
477 IPC_STRUCT_TRAITS_END() | 478 IPC_STRUCT_TRAITS_END() |
478 | 479 |
(...skipping 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2093 int32 /* complete status */) | 2094 int32 /* complete status */) |
2094 | 2095 |
2095 // Request updated information about the client firewall traversal policy. | 2096 // Request updated information about the client firewall traversal policy. |
2096 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2097 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
2097 // being sent back. | 2098 // being sent back. |
2098 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2099 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
2099 | 2100 |
2100 // Notifies the browser of an event occurring in the media pipeline. | 2101 // Notifies the browser of an event occurring in the media pipeline. |
2101 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2102 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
2102 media::MediaLogEvent /* event */) | 2103 media::MediaLogEvent /* event */) |
OLD | NEW |