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

Unified Diff: media/filters/pipeline_controller.h

Issue 1904213003: Convert //media/filters 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: media/filters/pipeline_controller.h
diff --git a/media/filters/pipeline_controller.h b/media/filters/pipeline_controller.h
index f5cb6a16ac87a2ff4e92b610e869c3481c5c98e0..2993feda180f10697d9e87c65d7ddbac23e26fe4 100644
--- a/media/filters/pipeline_controller.h
+++ b/media/filters/pipeline_controller.h
@@ -38,7 +38,7 @@ class MEDIA_EXPORT PipelineController {
RESUMING,
};
- using RendererFactoryCB = base::Callback<scoped_ptr<Renderer>(void)>;
+ using RendererFactoryCB = base::Callback<std::unique_ptr<Renderer>(void)>;
using SeekedCB = base::Callback<void(bool time_updated)>;
using SuspendedCB = base::Callback<void()>;

Powered by Google App Engine
This is Rietveld 408576698