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

Unified Diff: services/media/framework/stages/stage.h

Issue 1822333002: Motown: wholesale clang-format (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: dalesat Created 4 years, 9 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 | « services/media/framework/stages/output.cc ('k') | services/media/framework/stages/stage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/media/framework/stages/stage.h
diff --git a/services/media/framework/stages/stage.h b/services/media/framework/stages/stage.h
index 6e43d004bdc28eeee4e0f220b7090745f4329587..491c3e9895a9bc2f267ecfad8e20237fcbf9fe2a 100644
--- a/services/media/framework/stages/stage.h
+++ b/services/media/framework/stages/stage.h
@@ -53,10 +53,9 @@ class Stage {
// by the output or nullptr if there is no such requirement. The callback is
// used to indicate what inputs are ready to be prepared as a consequence of
// preparing the output.
- virtual void PrepareOutput(
- size_t index,
- PayloadAllocator* allocator,
- const UpstreamCallback& callback) = 0;
+ virtual void PrepareOutput(size_t index,
+ PayloadAllocator* allocator,
+ const UpstreamCallback& callback) = 0;
// Unprepares the input. The default implementation does nothing.
virtual void UnprepareInput(size_t index);
@@ -64,18 +63,14 @@ class Stage {
// Unprepares the output. The default implementation does nothing. The
// the callback is used to indicate what inputs are ready to be unprepared as
// a consequence of unpreparing the output.
- virtual void UnprepareOutput(
- size_t index,
- const UpstreamCallback& callback);
+ virtual void UnprepareOutput(size_t index, const UpstreamCallback& callback);
// Performs processing.
virtual void Update(Engine* engine) = 0;
// Flushes an input. The callback is used to indicate what outputs are ready
// to be flushed as a consequence of flushing the input.
- virtual void FlushInput(
- size_t index,
- const DownstreamCallback& callback) = 0;
+ virtual void FlushInput(size_t index, const DownstreamCallback& callback) = 0;
// Flushes an output.
virtual void FlushOutput(size_t index) = 0;
« no previous file with comments | « services/media/framework/stages/output.cc ('k') | services/media/framework/stages/stage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698