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

Unified Diff: third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.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/ScriptProcessorNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp b/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
index 19dc6b0ed0913cd2413807f3661c13597cc43128..51eb4229a0141fd900e1f8257e016c0bdc2f33c9 100644
--- a/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/ScriptProcessorNode.cpp
@@ -310,10 +310,10 @@ void ScriptProcessorHandler::setChannelCount(unsigned long channelCount,
BaseAudioContext::AutoLocker locker(context());
if (channelCount != m_channelCount) {
- exceptionState.throwDOMException(
- NotSupportedError, "channelCount cannot be changed from " +
- String::number(m_channelCount) + " to " +
- String::number(channelCount));
+ exceptionState.throwDOMException(NotSupportedError,
+ "channelCount cannot be changed from " +
+ String::number(m_channelCount) +
+ " to " + String::number(channelCount));
}
}

Powered by Google App Engine
This is Rietveld 408576698