Skip to content

Commit

Permalink
Make SpeechRecognition class final
Browse files Browse the repository at this point in the history
rdar://124437578
https://bugs.webkit.org/show_bug.cgi?id=270842

Reviewed by Eric Carlson.

* Source/WebCore/Modules/speech/SpeechRecognition.h:

Canonical link: https://commits.webkit.org/275974@main
  • Loading branch information
youennf committed Mar 12, 2024
1 parent 521523a commit 1c63097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/WebCore/Modules/speech/SpeechRecognition.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ namespace WebCore {
class Document;
class SpeechRecognitionResult;

class SpeechRecognition : public SpeechRecognitionConnectionClient, public ActiveDOMObject, public RefCounted<SpeechRecognition>, public EventTarget {
class SpeechRecognition final : public SpeechRecognitionConnectionClient, public ActiveDOMObject, public RefCounted<SpeechRecognition>, public EventTarget {
WTF_MAKE_ISO_ALLOCATED(SpeechRecognition);
public:
static Ref<SpeechRecognition> create(Document&);
Expand Down

0 comments on commit 1c63097

Please sign in to comment.