| 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 /* From trusted/ppb_audio_input_trusted_dev.idl modified Mon Nov 21 12:37:35 201
1. */ | 6 /* From trusted/ppb_audio_input_trusted_dev.idl, |
| 7 * modified Tue Jan 3 05:59:06 2012. */ |
| 7 | 8 |
| 8 #ifndef PPAPI_C_TRUSTED_PPB_AUDIO_INPUT_TRUSTED_DEV_H_ | 9 #ifndef PPAPI_C_TRUSTED_PPB_AUDIO_INPUT_TRUSTED_DEV_H_ |
| 9 #define PPAPI_C_TRUSTED_PPB_AUDIO_INPUT_TRUSTED_DEV_H_ | 10 #define PPAPI_C_TRUSTED_PPB_AUDIO_INPUT_TRUSTED_DEV_H_ |
| 10 | 11 |
| 11 #include "ppapi/c/pp_completion_callback.h" | 12 #include "ppapi/c/pp_completion_callback.h" |
| 12 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
| 13 #include "ppapi/c/pp_macros.h" | 14 #include "ppapi/c/pp_macros.h" |
| 14 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
| 15 #include "ppapi/c/pp_stdint.h" | 16 #include "ppapi/c/pp_stdint.h" |
| 16 | 17 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 int32_t (*GetSharedMemory)(PP_Resource audio_input, | 60 int32_t (*GetSharedMemory)(PP_Resource audio_input, |
| 60 int* shm_handle, | 61 int* shm_handle, |
| 61 uint32_t* shm_size); | 62 uint32_t* shm_size); |
| 62 }; | 63 }; |
| 63 /** | 64 /** |
| 64 * @} | 65 * @} |
| 65 */ | 66 */ |
| 66 | 67 |
| 67 #endif /* PPAPI_C_TRUSTED_PPB_AUDIO_INPUT_TRUSTED_DEV_H_ */ | 68 #endif /* PPAPI_C_TRUSTED_PPB_AUDIO_INPUT_TRUSTED_DEV_H_ */ |
| 68 | 69 |
| OLD | NEW |