| OLD | NEW |
| 1 /* Copyright (c) 2011 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 | 5 |
| 6 /** | 6 /** |
| 7 * This file defines the <code>PPB_Transport_Dev</code> interface. | 7 * This file defines the <code>PPB_Transport_Dev</code> interface. |
| 8 */ | 8 */ |
| 9 label Chrome { | 9 label Chrome { |
| 10 M14 = 0.7 | 10 M14 = 0.7 |
| 11 }; | 11 }; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 [in] mem_t data, | 174 [in] mem_t data, |
| 175 [in] uint32_t len, | 175 [in] uint32_t len, |
| 176 [in] PP_CompletionCallback cb); | 176 [in] PP_CompletionCallback cb); |
| 177 | 177 |
| 178 /** | 178 /** |
| 179 * Disconnects from the remote peer. | 179 * Disconnects from the remote peer. |
| 180 */ | 180 */ |
| 181 int32_t Close( | 181 int32_t Close( |
| 182 [in] PP_Resource transport); | 182 [in] PP_Resource transport); |
| 183 }; | 183 }; |
| OLD | NEW |