| 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 HTML5 Blob and Stream. | 5 // IPC messages for HTML5 Blob and Stream. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
| 10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // Appends data to a stream being built. | 61 // Appends data to a stream being built. |
| 62 IPC_SYNC_MESSAGE_CONTROL3_0(StreamHostMsg_SyncAppendSharedMemory, | 62 IPC_SYNC_MESSAGE_CONTROL3_0(StreamHostMsg_SyncAppendSharedMemory, |
| 63 GURL /* url */, | 63 GURL /* url */, |
| 64 base::SharedMemoryHandle, | 64 base::SharedMemoryHandle, |
| 65 size_t /* buffer size */) | 65 size_t /* buffer size */) |
| 66 | 66 |
| 67 // Finishes building a stream. | 67 // Finishes building a stream. |
| 68 IPC_MESSAGE_CONTROL1(StreamHostMsg_FinishBuilding, | 68 IPC_MESSAGE_CONTROL1(StreamHostMsg_FinishBuilding, |
| 69 GURL /* url */) | 69 GURL /* url */) |
| 70 | 70 |
| 71 // Aborts building a stream. |
| 72 IPC_MESSAGE_CONTROL1(StreamHostMsg_AbortBuilding, |
| 73 GURL /* url */) |
| 74 |
| 71 // Creates a new stream that's a clone of an existing src stream. | 75 // Creates a new stream that's a clone of an existing src stream. |
| 72 IPC_MESSAGE_CONTROL2(StreamHostMsg_Clone, | 76 IPC_MESSAGE_CONTROL2(StreamHostMsg_Clone, |
| 73 GURL /* url */, | 77 GURL /* url */, |
| 74 GURL /* src_url */) | 78 GURL /* src_url */) |
| 75 | 79 |
| 76 // Removes a stream. | 80 // Removes a stream. |
| 77 IPC_MESSAGE_CONTROL1(StreamHostMsg_Remove, | 81 IPC_MESSAGE_CONTROL1(StreamHostMsg_Remove, |
| 78 GURL /* url */) | 82 GURL /* url */) |
| OLD | NEW |