mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 18:00:31 +00:00
Everywhere: Run clang-format
The following command was used to clang-format these files:
clang-format-21 -i $(find . \
-not \( -path "./\.*" -prune \) \
-not \( -path "./Build/*" -prune \) \
-not \( -path "./Toolchain/*" -prune \) \
-type f -name "*.cpp" -o -name "*.mm" -o -name "*.h")
This commit is contained in:
parent
415625d398
commit
ea32502947
Notes:
github-actions[bot]
2026-02-18 13:03:44 +00:00
Author: https://github.com/trflynn89
Commit: ea32502947
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8013
34 changed files with 231 additions and 84 deletions
|
|
@ -26,8 +26,11 @@ ScriptProcessorNode::ScriptProcessorNode(JS::Realm& realm, GC::Ref<BaseAudioCont
|
|||
|
||||
ScriptProcessorNode::~ScriptProcessorNode() = default;
|
||||
|
||||
WebIDL::ExceptionOr<GC::Ref<ScriptProcessorNode>> ScriptProcessorNode::create(JS::Realm& realm,
|
||||
GC::Ref<BaseAudioContext> context, WebIDL::Long buffer_size, WebIDL::UnsignedLong number_of_input_channels,
|
||||
WebIDL::ExceptionOr<GC::Ref<ScriptProcessorNode>> ScriptProcessorNode::create(
|
||||
JS::Realm& realm,
|
||||
GC::Ref<BaseAudioContext> context,
|
||||
WebIDL::Long buffer_size,
|
||||
WebIDL::UnsignedLong number_of_input_channels,
|
||||
WebIDL::UnsignedLong number_of_output_channels)
|
||||
{
|
||||
// https://webaudio.github.io/web-audio-api/#ScriptProcessorNode
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue