blob: 3fa5abc796a97d9d0ca94b3a250ddd3f0eaac0fd [file] [log] [blame]
Avi Drissman4e1b7bc32022-09-15 14:03:501// Copyright 2012 The Chromium Authors
[email protected]7869c0d2012-05-15 15:45:222// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "content/browser/speech/speech_recognition_engine.h"
6
Yaowei Zhouf7df39c2024-02-29 04:53:487#include "media/base/audio_parameters.h"
hans18b756f92016-04-14 18:33:478
9namespace content {
hans18b756f92016-04-14 18:33:4710
Yaowei Zhouf7df39c2024-02-29 04:53:4811void SpeechRecognitionEngine::set_delegate(Delegate* delegate) {
12 delegate_ = delegate;
hans18b756f92016-04-14 18:33:4713}
14
Yaowei Zhouf7df39c2024-02-29 04:53:4815void SpeechRecognitionEngine::SetAudioParameters(
16 media::AudioParameters audio_parameters) {
17 audio_parameters_ = audio_parameters;
[email protected]7869c0d2012-05-15 15:45:2218}
19
[email protected]fcb8e0212012-10-29 11:57:1820} // namespace content