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

Unified Diff: media/base/audio_bus.cc

Issue 2695713007: Delete unused AudioBusRefCounted structure. (Closed)
Patch Set: Created 3 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 | « media/base/audio_bus.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_bus.cc
diff --git a/media/base/audio_bus.cc b/media/base/audio_bus.cc
index d261e87f8dc9f26ae29338b874343eebf728f275..31e9e4f49cc215448cd95b60858d584a2b651370 100644
--- a/media/base/audio_bus.cc
+++ b/media/base/audio_bus.cc
@@ -344,15 +344,4 @@ void AudioBus::SwapChannels(int a, int b) {
std::swap(channel_data_[a], channel_data_[b]);
}
-scoped_refptr<AudioBusRefCounted> AudioBusRefCounted::Create(
- int channels, int frames) {
- return scoped_refptr<AudioBusRefCounted>(
- new AudioBusRefCounted(channels, frames));
-}
-
-AudioBusRefCounted::AudioBusRefCounted(int channels, int frames)
- : AudioBus(channels, frames) {}
-
-AudioBusRefCounted::~AudioBusRefCounted() {}
-
} // namespace media
« no previous file with comments | « media/base/audio_bus.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698