chromium/third_party/blink/renderer/core/speech/speech_synthesis_base.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/speech/speech_synthesis_base.h"

#include "third_party/blink/renderer/core/frame/local_dom_window.h"

namespace blink {

SpeechSynthesisBase::SpeechSynthesisBaseCreateFunction
    SpeechSynthesisBase::create_function_ =;

void SpeechSynthesisBase::Init(SpeechSynthesisBaseCreateFunction function) {}

SpeechSynthesisBase* SpeechSynthesisBase::Create(LocalDOMWindow& window) {}

void SpeechSynthesisBase::SetOnSpeakingCompletedCallback(
    OnSpeakingCompletedCallback callback) {}

void SpeechSynthesisBase::HandleSpeakingCompleted() {}

}  // namespace blink