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

Unified Diff: chromecast/media/cma/pipeline/audio_pipeline_impl.cc

Issue 1875623002: Convert //chromecast from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chromecast/media/cma/pipeline/audio_pipeline_impl.cc
diff --git a/chromecast/media/cma/pipeline/audio_pipeline_impl.cc b/chromecast/media/cma/pipeline/audio_pipeline_impl.cc
index 5148cb6389bb2a312727b96a9bcbc383cba66c5c..2a4cb7a43244d2f72c3e0299bed441011b5c4bf8 100644
--- a/chromecast/media/cma/pipeline/audio_pipeline_impl.cc
+++ b/chromecast/media/cma/pipeline/audio_pipeline_impl.cc
@@ -33,7 +33,7 @@ AudioPipelineImpl::~AudioPipelineImpl() {}
::media::PipelineStatus AudioPipelineImpl::Initialize(
const ::media::AudioDecoderConfig& audio_config,
- scoped_ptr<CodedFrameProvider> frame_provider) {
+ std::unique_ptr<CodedFrameProvider> frame_provider) {
CMALOG(kLogControl) << __FUNCTION__ << " "
<< audio_config.AsHumanReadableString();
if (frame_provider) {

Powered by Google App Engine
This is Rietveld 408576698