| 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 #ifndef PPAPI_C_PPB_AUDIO_TRUSTED_H_ | 5 |
| 6 #define PPAPI_C_PPB_AUDIO_TRUSTED_H_ | 6 /* From trusted/ppb_audio_trusted.idl modified Sat Jul 16 16:51:03 2011. */ |
| 7 |
| 8 #ifndef PPAPI_C_TRUSTED_PPB_AUDIO_TRUSTED_H_ |
| 9 #define PPAPI_C_TRUSTED_PPB_AUDIO_TRUSTED_H_ |
| 7 | 10 |
| 8 #include "ppapi/c/pp_completion_callback.h" | 11 #include "ppapi/c/pp_completion_callback.h" |
| 9 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
| 13 #include "ppapi/c/pp_macros.h" |
| 10 #include "ppapi/c/pp_resource.h" | 14 #include "ppapi/c/pp_resource.h" |
| 15 #include "ppapi/c/pp_stdint.h" |
| 11 | 16 |
| 12 #define PPB_AUDIO_TRUSTED_INTERFACE "PPB_AudioTrusted;0.6" | 17 /** |
| 18 * @file |
| 19 * This file defines the trusted audio interface. |
| 20 */ |
| 13 | 21 |
| 22 |
| 23 /** |
| 24 * @addtogroup Interfaces |
| 25 * @{ |
| 26 */ |
| 14 /** | 27 /** |
| 15 * This interface is to be used by proxy implementations. All | 28 * This interface is to be used by proxy implementations. All |
| 16 * functions should be called from the main thread only. The | 29 * functions should be called from the main thread only. The |
| 17 * resource returned is an Audio resource; most of the PPB_Audio | 30 * resource returned is an Audio resource; most of the PPB_Audio |
| 18 * interface is also usable on this resource. | 31 * interface is also usable on this resource. |
| 19 */ | 32 */ |
| 33 #define PPB_AUDIO_TRUSTED_INTERFACE_0_6 "PPB_AudioTrusted;0.6" |
| 34 #define PPB_AUDIO_TRUSTED_INTERFACE PPB_AUDIO_TRUSTED_INTERFACE_0_6 |
| 35 |
| 20 struct PPB_AudioTrusted { | 36 struct PPB_AudioTrusted { |
| 21 /** Returns an audio resource. */ | 37 /** Returns an audio resource. */ |
| 22 PP_Resource (*CreateTrusted)(PP_Instance instance); | 38 PP_Resource (*CreateTrusted)(PP_Instance instance); |
| 23 | |
| 24 /** | 39 /** |
| 25 * Opens a paused audio interface, used by trusted side of proxy. | 40 * Opens a paused audio interface, used by trusted side of proxy. |
| 26 * Returns PP_ERROR_WOULD_BLOCK on success, and invokes | 41 * Returns PP_ERROR_WOULD_BLOCK on success, and invokes |
| 27 * the |create_callback| asynchronously to complete. | 42 * the |create_callback| asynchronously to complete. |
| 28 * As this function should always be invoked from the main thread, | 43 * As this function should always be invoked from the main thread, |
| 29 * do not use the blocking variant of PP_CompletionCallback. | 44 * do not use the blocking variant of PP_CompletionCallback. |
| 30 */ | 45 */ |
| 31 int32_t (*Open)(PP_Resource audio, PP_Resource config, | 46 int32_t (*Open)(PP_Resource audio, |
| 47 PP_Resource config, |
| 32 struct PP_CompletionCallback create_callback); | 48 struct PP_CompletionCallback create_callback); |
| 33 | |
| 34 /** | 49 /** |
| 35 * Get the sync socket. Use once Open has completed. | 50 * Get the sync socket. Use once Open has completed. |
| 36 * Returns PP_OK on success. | 51 * Returns PP_OK on success. |
| 37 */ | 52 */ |
| 38 int32_t (*GetSyncSocket)(PP_Resource audio, int* sync_socket); | 53 int32_t (*GetSyncSocket)(PP_Resource audio, int* sync_socket); |
| 39 | |
| 40 /** | 54 /** |
| 41 * Get the shared memory interface. Use once Open has completed. | 55 * Get the shared memory interface. Use once Open has completed. |
| 42 * Returns PP_OK on success. | 56 * Returns PP_OK on success. |
| 43 */ | 57 */ |
| 44 int32_t (*GetSharedMemory)(PP_Resource audio, | 58 int32_t (*GetSharedMemory)(PP_Resource audio, |
| 45 int* shm_handle, | 59 int* shm_handle, |
| 46 uint32_t* shm_size); | 60 uint32_t* shm_size); |
| 47 }; | 61 }; |
| 62 /** |
| 63 * @} |
| 64 */ |
| 48 | 65 |
| 49 #endif /* PPAPI_C_PPB_AUDIO_TRUSTED_H_ */ | 66 #endif /* PPAPI_C_TRUSTED_PPB_AUDIO_TRUSTED_H_ */ |
| 67 |
| OLD | NEW |