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

Unified Diff: services/media/framework/formatting.h

Issue 1678433002: Motown: Remove LPCM optimizations, fix prepare, add flush, add ActiveMultistreamSink model/stage (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: A couple of missed fixes. Created 4 years, 10 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: services/media/framework/formatting.h
diff --git a/services/media/framework/formatting.h b/services/media/framework/formatting.h
index d0a1211203d6a3748c28a6a2ee510c2bd2bebcbe..2cdbc623ab30093f4cb158f79b1cb4205e691f2a 100644
--- a/services/media/framework/formatting.h
+++ b/services/media/framework/formatting.h
@@ -61,7 +61,7 @@ std::ostream& operator<<(
std::ostream& operator<<(std::ostream& os, VideoStreamType::VideoProfile value);
std::ostream& operator<<(std::ostream& os, VideoStreamType::PixelFormat value);
std::ostream& operator<<(std::ostream& os, VideoStreamType::ColorSpace value);
-std::ostream& operator<<(std::ostream& os, const BytesPtr& value);
+std::ostream& operator<<(std::ostream& os, const std::unique_ptr<Bytes>& value);
template<typename T>
std::ostream& operator<<(std::ostream& os, Range<T> value) {
@@ -72,10 +72,18 @@ std::ostream& operator<<(std::ostream& os, Range<bool> value);
// The following overloads add newlines.
-std::ostream& operator<<(std::ostream& os, const StreamTypePtr& value);
-std::ostream& operator<<(std::ostream& os, const StreamTypeSetPtr& value);
-std::ostream& operator<<(std::ostream& os, const StreamTypesPtr& value);
-std::ostream& operator<<(std::ostream& os, const StreamTypeSetsPtr& value);
+std::ostream& operator<<(
+ std::ostream& os,
+ const std::unique_ptr<StreamType>& value);
+std::ostream& operator<<(
+ std::ostream& os,
+ const std::unique_ptr<StreamTypeSet>& value);
+std::ostream& operator<<(
+ std::ostream& os,
+ const std::unique_ptr<std::vector<std::unique_ptr<StreamType>>>& value);
+std::ostream& operator<<(
+ std::ostream& os,
+ const std::unique_ptr<std::vector<std::unique_ptr<StreamTypeSet>>>& value);
} // namespace media
} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698