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 2077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2088 int32 /* complete status */) | 2088 int32 /* complete status */) |
2089 | 2089 |
2090 // Request updated information about the client firewall traversal policy. | 2090 // Request updated information about the client firewall traversal policy. |
2091 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2091 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
2092 // being sent back. | 2092 // being sent back. |
2093 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2093 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
2094 | 2094 |
2095 // Notifies the browser of an event occurring in the media pipeline. | 2095 // Notifies the browser of an event occurring in the media pipeline. |
2096 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, | 2096 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, |
2097 media::MediaLogEvent /* event */) | 2097 media::MediaLogEvent /* event */) |
| 2098 |
| 2099 // This message asks frame sniffer start. |
| 2100 IPC_MESSAGE_ROUTED1(ViewMsg_StartFrameSniffer, |
| 2101 string16 /* frame-name */) |
| 2102 |
| 2103 // This message indicates the error appeared in the frame. |
| 2104 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameLoadingError, |
| 2105 int /* error */) |
OLD | NEW |