| Index: webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| diff --git a/webrtc/modules/audio_processing/agc/histogram_unittest.cc b/webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| index d41aacafd854fe98e4831947ddac6f19c75fa5e9..d00600cc97c408989ec6c45ae94897fa20b1a73d 100644
|
| --- a/webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| +++ b/webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| @@ -14,6 +14,7 @@
|
|
|
| #include <stdio.h>
|
| #include <cmath>
|
| +#include <memory>
|
|
|
| #include "gtest/gtest.h"
|
| #include "webrtc/test/testsupport/fileutils.h"
|
| @@ -37,7 +38,7 @@ class HistogramTest : public ::testing::Test {
|
|
|
| private:
|
| void TestClean();
|
| - rtc::scoped_ptr<Histogram> hist_;
|
| + std::unique_ptr<Histogram> hist_;
|
| };
|
|
|
| void HistogramTest::TestClean() {
|
|
|