| 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 * 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 |
| 11 }; | 11 }; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 /** | 44 /** |
| 45 * Get the shared memory interface. Use once Open has completed. | 45 * Get the shared memory interface. Use once Open has completed. |
| 46 * Returns PP_OK on success. | 46 * Returns PP_OK on success. |
| 47 */ | 47 */ |
| 48 int32_t GetSharedMemory( | 48 int32_t GetSharedMemory( |
| 49 [in] PP_Resource audio_input, | 49 [in] PP_Resource audio_input, |
| 50 [out] handle_t shm_handle, | 50 [out] handle_t shm_handle, |
| 51 [out] uint32_t shm_size); | 51 [out] uint32_t shm_size); |
| 52 }; | 52 }; |
| OLD | NEW |