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

Unified Diff: media/base/audio_buffer_converter_unittest.cc

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/audio_buffer_converter.cc ('k') | media/base/audio_buffer_queue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_buffer_converter_unittest.cc
diff --git a/media/base/audio_buffer_converter_unittest.cc b/media/base/audio_buffer_converter_unittest.cc
index 712ef7bd1f986ac59d73e40798d9f7282d6aa5dd..506ea28e05a21368fc656f7ee054fc71ed07f4e8 100644
--- a/media/base/audio_buffer_converter_unittest.cc
+++ b/media/base/audio_buffer_converter_unittest.cc
@@ -2,11 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "media/base/audio_buffer_converter.h"
+
#include <stdint.h>
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "media/base/audio_buffer.h"
-#include "media/base/audio_buffer_converter.h"
#include "media/base/sinc_resampler.h"
#include "media/base/test_helpers.h"
#include "testing/gmock/include/gmock/gmock.h"
@@ -80,7 +82,7 @@ class AudioBufferConverterTest : public ::testing::Test {
}
protected:
- scoped_ptr<AudioBufferConverter> audio_buffer_converter_;
+ std::unique_ptr<AudioBufferConverter> audio_buffer_converter_;
int input_frames_;
double expected_output_frames_;
« no previous file with comments | « media/base/audio_buffer_converter.cc ('k') | media/base/audio_buffer_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698