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

Unified Diff: media/base/multi_channel_resampler.h

Issue 1906423005: Replace scoped_ptr with std::unique_ptr in //media/base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptr-media-base: android Created 4 years, 8 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/mock_media_log.h ('k') | media/base/multi_channel_resampler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/multi_channel_resampler.h
diff --git a/media/base/multi_channel_resampler.h b/media/base/multi_channel_resampler.h
index dfe9f3beb041d99905633d62231d6896f0b6a753..02866b992f08bdcb6af264fa572178f96560a120 100644
--- a/media/base/multi_channel_resampler.h
+++ b/media/base/multi_channel_resampler.h
@@ -7,11 +7,11 @@
#include <stddef.h>
+#include <memory>
#include <vector>
#include "base/callback.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "media/base/sinc_resampler.h"
@@ -72,11 +72,11 @@ class MEDIA_EXPORT MultiChannelResampler {
ScopedVector<SincResampler> resamplers_;
// Buffers for audio data going into SincResampler from ReadCB.
- scoped_ptr<AudioBus> resampler_audio_bus_;
+ std::unique_ptr<AudioBus> resampler_audio_bus_;
// To avoid a memcpy() on the first channel we create a wrapped AudioBus where
// the first channel points to the |destination| provided to ProvideInput().
- scoped_ptr<AudioBus> wrapped_resampler_audio_bus_;
+ std::unique_ptr<AudioBus> wrapped_resampler_audio_bus_;
// The number of output frames that have successfully been processed during
// the current Resample() call.
« no previous file with comments | « media/base/mock_media_log.h ('k') | media/base/multi_channel_resampler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698