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

Unified Diff: third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 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: third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp
diff --git a/third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp b/third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp
index 51aecd41eb52cf2c040628c5eb872228bdc10d56..80ff3262c66b868a867f162cecf6acdd7d4db4be 100644
--- a/third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp
+++ b/third_party/WebKit/Source/modules/mediasource/SourceBuffer.cpp
@@ -340,8 +340,9 @@ void SourceBuffer::setAppendWindowEnd(double end,
// TypeError exception and abort these steps.
if (end <= m_appendWindowStart) {
MediaSource::logAndThrowTypeError(
- exceptionState, ExceptionMessages::indexExceedsMinimumBound(
- "value", end, m_appendWindowStart));
+ exceptionState,
+ ExceptionMessages::indexExceedsMinimumBound("value", end,
+ m_appendWindowStart));
return;
}

Powered by Google App Engine
This is Rietveld 408576698