| 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 /** | 5 /** |
| 6 * This file defines the trusted audio input interface. | 6 * This file defines the trusted audio input interface. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 label Chrome { | 9 label Chrome { |
| 10 M17 = 0.1 | 10 M17 = 0.1 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 /** | 45 /** |
| 46 * Get the shared memory interface. Use once Open has completed. | 46 * Get the shared memory interface. Use once Open has completed. |
| 47 * Returns PP_OK on success. | 47 * Returns PP_OK on success. |
| 48 */ | 48 */ |
| 49 int32_t GetSharedMemory( | 49 int32_t GetSharedMemory( |
| 50 [in] PP_Resource audio_input, | 50 [in] PP_Resource audio_input, |
| 51 [out] handle_t shm_handle, | 51 [out] handle_t shm_handle, |
| 52 [out] uint32_t shm_size); | 52 [out] uint32_t shm_size); |
| 53 }; | 53 }; |
| OLD | NEW |