Index: chromecast/media/cma/base/buffering_controller_unittest.cc |
diff --git a/chromecast/media/cma/base/buffering_controller_unittest.cc b/chromecast/media/cma/base/buffering_controller_unittest.cc |
index 57210e9dddec81cc7ef83c39d6adf98cab432d07..503b430cd9e11e5bbf56640ba61ff483b0575a05 100644 |
--- a/chromecast/media/cma/base/buffering_controller_unittest.cc |
+++ b/chromecast/media/cma/base/buffering_controller_unittest.cc |
@@ -2,13 +2,15 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include "chromecast/media/cma/base/buffering_controller.h" |
+ |
+#include <memory> |
+ |
#include "base/bind.h" |
#include "base/callback_helpers.h" |
#include "base/logging.h" |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/time/time.h" |
-#include "chromecast/media/cma/base/buffering_controller.h" |
#include "chromecast/media/cma/base/buffering_state.h" |
#include "testing/gmock/include/gmock/gmock.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -43,7 +45,7 @@ class BufferingControllerTest : public testing::Test { |
~BufferingControllerTest() override; |
protected: |
- scoped_ptr<BufferingController> buffering_controller_; |
+ std::unique_ptr<BufferingController> buffering_controller_; |
MockBufferingControllerClient client_; |