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

Unified Diff: ppapi/proxy/audio_frame_resource.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/proxy/audio_buffer_resource.cc ('k') | ppapi/proxy/audio_frame_resource.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/audio_frame_resource.h
diff --git a/ppapi/proxy/audio_frame_resource.h b/ppapi/proxy/audio_frame_resource.h
deleted file mode 100644
index 8332ec295cfe58612947ca318ad950b03cf87dae..0000000000000000000000000000000000000000
--- a/ppapi/proxy/audio_frame_resource.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef PPAPI_PROXY_AUDIO_FRAME_RESOURCE_H_
-#define PPAPI_PROXY_AUDIO_FRAME_RESOURCE_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "ppapi/proxy/ppapi_proxy_export.h"
-#include "ppapi/shared_impl/resource.h"
-#include "ppapi/thunk/ppb_audio_frame_api.h"
-
-namespace ppapi {
-
-union MediaStreamBuffer;
-
-namespace proxy {
-
-class PPAPI_PROXY_EXPORT AudioFrameResource : public Resource,
- public thunk::PPB_AudioFrame_API {
- public:
- AudioFrameResource(PP_Instance instance,
- int32_t index,
- MediaStreamBuffer* buffer);
-
- virtual ~AudioFrameResource();
-
- // PluginResource overrides:
- virtual thunk::PPB_AudioFrame_API* AsPPB_AudioFrame_API() OVERRIDE;
-
- // PPB_AudioFrame_API overrides:
- virtual PP_TimeDelta GetTimestamp() OVERRIDE;
- virtual void SetTimestamp(PP_TimeDelta timestamp) OVERRIDE;
- virtual PP_AudioFrame_SampleRate GetSampleRate() OVERRIDE;
- virtual PP_AudioFrame_SampleSize GetSampleSize() OVERRIDE;
- virtual uint32_t GetNumberOfChannels() OVERRIDE;
- virtual uint32_t GetNumberOfSamples() OVERRIDE;
- virtual void* GetDataBuffer() OVERRIDE;
- virtual uint32_t GetDataBufferSize() OVERRIDE;
- virtual MediaStreamBuffer* GetBuffer() OVERRIDE;
- virtual int32_t GetBufferIndex() OVERRIDE;
- virtual void Invalidate() OVERRIDE;
-
- // Frame index
- int32_t index_;
-
- MediaStreamBuffer* buffer_;
-
- DISALLOW_COPY_AND_ASSIGN(AudioFrameResource);
-};
-
-} // namespace proxy
-} // namespace ppapi
-
-#endif // PPAPI_PROXY_AUDIO_FRAME_RESOURCE_H_
« no previous file with comments | « ppapi/proxy/audio_buffer_resource.cc ('k') | ppapi/proxy/audio_frame_resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698