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

Unified Diff: ppapi/thunk/ppb_media_stream_audio_track_api.h

Issue 156863005: [PPAPI][MediaStream] Rename AudioFrame to AudioBuffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@frame_to_buffer
Patch Set: Update Created 6 years, 10 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/thunk/ppb_audio_frame_thunk.cc ('k') | ppapi/thunk/ppb_media_stream_audio_track_thunk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_media_stream_audio_track_api.h
diff --git a/ppapi/thunk/ppb_media_stream_audio_track_api.h b/ppapi/thunk/ppb_media_stream_audio_track_api.h
index e013c4f12351cf610c6782b4ddf75493e770a090..2c43136d32997963ae365a2f3f765e3058b482af 100644
--- a/ppapi/thunk/ppb_media_stream_audio_track_api.h
+++ b/ppapi/thunk/ppb_media_stream_audio_track_api.h
@@ -19,9 +19,9 @@ class PPAPI_THUNK_EXPORT PPB_MediaStreamAudioTrack_API {
scoped_refptr<ppapi::TrackedCallback> callback) = 0;
virtual int32_t GetAttrib(PP_MediaStreamAudioTrack_Attrib attrib,
int32_t* value) = 0;
- virtual int32_t GetFrame(PP_Resource* frame,
- scoped_refptr<ppapi::TrackedCallback> callback) = 0;
- virtual int32_t RecycleFrame(PP_Resource frame) = 0;
+ virtual int32_t GetBuffer(PP_Resource* buffer,
+ scoped_refptr<ppapi::TrackedCallback> callback) = 0;
+ virtual int32_t RecycleBuffer(PP_Resource buffer) = 0;
virtual void Close() = 0;
};
« no previous file with comments | « ppapi/thunk/ppb_audio_frame_thunk.cc ('k') | ppapi/thunk/ppb_media_stream_audio_track_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698