mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2026, Jelle Raaijmakers <jelle@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibJS/Runtime/Realm.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/Bindings/SpeechGrammarListPrototype.h>
|
|
#include <LibWeb/Speech/SpeechGrammarList.h>
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
|
|
|
namespace Web::Speech {
|
|
|
|
GC_DEFINE_ALLOCATOR(SpeechGrammarList);
|
|
|
|
WebIDL::ExceptionOr<GC::Ref<SpeechGrammarList>> SpeechGrammarList::construct_impl(JS::Realm& realm)
|
|
{
|
|
return realm.create<SpeechGrammarList>(realm);
|
|
}
|
|
|
|
SpeechGrammarList::SpeechGrammarList(JS::Realm& realm)
|
|
: Bindings::PlatformObject(realm)
|
|
{
|
|
}
|
|
|
|
SpeechGrammarList::~SpeechGrammarList() = default;
|
|
|
|
void SpeechGrammarList::initialize(JS::Realm& realm)
|
|
{
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(SpeechGrammarList);
|
|
Base::initialize(realm);
|
|
}
|
|
|
|
void SpeechGrammarList::visit_edges(Cell::Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_grammars);
|
|
}
|
|
|
|
// https://wicg.github.io/speech-api/#dom-speechgrammarlist-item
|
|
GC::Ptr<SpeechGrammar> SpeechGrammarList::item(size_t index) const
|
|
{
|
|
if (index >= m_grammars.size())
|
|
return nullptr;
|
|
return m_grammars[index];
|
|
}
|
|
|
|
}
|