Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: ppapi/c/ppb_audio.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/c/pp_var.h ('k') | ppapi/c/ppb_audio_config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/ppb_audio.h
diff --git a/ppapi/c/ppb_audio.h b/ppapi/c/ppb_audio.h
index 237687b6ef583c228b935a2a8b85761df9298c8f..112c79d4c7b41f02bf656d10401d33a6cb17be22 100644
--- a/ppapi/c/ppb_audio.h
+++ b/ppapi/c/ppb_audio.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From ppb_audio.idl modified Mon Aug 29 10:11:34 2011. */
+/* From ppb_audio.idl modified Wed Oct 5 14:06:02 2011. */
#ifndef PPAPI_C_PPB_AUDIO_H_
#define PPAPI_C_PPB_AUDIO_H_
@@ -78,7 +78,7 @@ typedef void (*PPB_Audio_Callback)(void* sample_buffer,
* ...audio_callback() will now be periodically invoked on a separate thread...
* </code>
*/
-struct PPB_Audio {
+struct PPB_Audio_1_0 {
/**
* Create() creates an audio resource. No sound will be heard until
* StartPlayback() is called. The callback is called with the buffer address
@@ -156,6 +156,8 @@ struct PPB_Audio {
*/
PP_Bool (*StopPlayback)(PP_Resource audio);
};
+
+typedef struct PPB_Audio_1_0 PPB_Audio;
/**
* @}
*/
« no previous file with comments | « ppapi/c/pp_var.h ('k') | ppapi/c/ppb_audio_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698