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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioContext.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/webaudio/AudioContext.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioContext.cpp b/third_party/WebKit/Source/modules/webaudio/AudioContext.cpp
index e71b37d8df9c79727cbc063548293b95c4823a87..b53049ea46355e34b40ff29ddbaf9011dbaa8405 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioContext.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioContext.cpp
@@ -43,9 +43,10 @@ AudioContext* AudioContext::create(Document& document,
if (s_hardwareContextCount >= MaxHardwareContexts) {
exceptionState.throwDOMException(
- NotSupportedError, ExceptionMessages::indexExceedsMaximumBound(
- "number of hardware contexts",
- s_hardwareContextCount, MaxHardwareContexts));
+ NotSupportedError,
+ ExceptionMessages::indexExceedsMaximumBound(
+ "number of hardware contexts", s_hardwareContextCount,
+ MaxHardwareContexts));
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698