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

Unified Diff: ppapi/thunk/ppb_audio_frame_api.h

Issue 142023008: [PPAPI][MediaStream] Rename AudioFrame to AudioBuffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review issues 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/shared_impl/media_stream_frame_buffer.cc ('k') | ppapi/thunk/ppb_video_frame_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_audio_frame_api.h
diff --git a/ppapi/thunk/ppb_audio_frame_api.h b/ppapi/thunk/ppb_audio_frame_api.h
index ca9cd1f6602bb1cc36ce8fc5d0c2a8687ac204a8..6d106c631102076f25e4f05d043a8881b70a985d 100644
--- a/ppapi/thunk/ppb_audio_frame_api.h
+++ b/ppapi/thunk/ppb_audio_frame_api.h
@@ -10,7 +10,7 @@
namespace ppapi {
-union MediaStreamFrame;
+union MediaStreamBuffer;
namespace thunk {
@@ -27,8 +27,8 @@ class PPAPI_THUNK_EXPORT PPB_AudioFrame_API {
virtual uint32_t GetDataBufferSize() = 0;
// Methods used by Pepper internal implementation only.
- virtual MediaStreamFrame* GetFrameBuffer() = 0;
- virtual int32_t GetFrameBufferIndex() = 0;
+ virtual MediaStreamBuffer* GetBuffer() = 0;
+ virtual int32_t GetBufferIndex() = 0;
virtual void Invalidate() = 0;
};
« no previous file with comments | « ppapi/shared_impl/media_stream_frame_buffer.cc ('k') | ppapi/thunk/ppb_video_frame_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698