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

Unified Diff: remoting/codec/video_decoder_vpx_unittest.cc

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/codec/video_decoder_vpx.cc ('k') | remoting/codec/video_encoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_decoder_vpx_unittest.cc
diff --git a/remoting/codec/video_decoder_vpx_unittest.cc b/remoting/codec/video_decoder_vpx_unittest.cc
index a7f2530b9e93b827b1a865faa86b5093c5bccf72..2224d9a74ebd1fe1bdb09d8b58f02dc74cb4cb5c 100644
--- a/remoting/codec/video_decoder_vpx_unittest.cc
+++ b/remoting/codec/video_decoder_vpx_unittest.cc
@@ -16,8 +16,8 @@ namespace {
class VideoDecoderVpxTest : public testing::Test {
protected:
- scoped_ptr<VideoEncoderVpx> encoder_;
- scoped_ptr<VideoDecoderVpx> decoder_;
+ std::unique_ptr<VideoEncoderVpx> encoder_;
+ std::unique_ptr<VideoDecoderVpx> decoder_;
VideoDecoderVpxTest() : encoder_(VideoEncoderVpx::CreateForVP8()),
decoder_(VideoDecoderVpx::CreateForVP8()) {
« no previous file with comments | « remoting/codec/video_decoder_vpx.cc ('k') | remoting/codec/video_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698