2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-10-08 03:55:14 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
2014-10-08 03:55:14 +00:00
|
|
|
|
2018-10-02 22:11:00 +00:00
|
|
|
#include <vector>
|
2014-10-08 09:47:47 +00:00
|
|
|
|
2014-10-08 03:55:14 +00:00
|
|
|
#include "content/public/browser/speech_recognition_event_listener.h"
|
|
|
|
#include "content/public/browser/speech_recognition_manager_delegate.h"
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2014-10-08 03:55:14 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
class ElectronSpeechRecognitionManagerDelegate
|
2014-10-08 03:55:14 +00:00
|
|
|
: public content::SpeechRecognitionManagerDelegate,
|
|
|
|
public content::SpeechRecognitionEventListener {
|
|
|
|
public:
|
2020-02-04 20:19:40 +00:00
|
|
|
ElectronSpeechRecognitionManagerDelegate();
|
|
|
|
~ElectronSpeechRecognitionManagerDelegate() override;
|
2014-10-08 03:55:14 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
ElectronSpeechRecognitionManagerDelegate(
|
|
|
|
const ElectronSpeechRecognitionManagerDelegate&) = delete;
|
|
|
|
ElectronSpeechRecognitionManagerDelegate& operator=(
|
|
|
|
const ElectronSpeechRecognitionManagerDelegate&) = delete;
|
|
|
|
|
2014-10-08 03:55:14 +00:00
|
|
|
// content::SpeechRecognitionEventListener:
|
2014-12-16 01:15:56 +00:00
|
|
|
void OnRecognitionStart(int session_id) override;
|
|
|
|
void OnAudioStart(int session_id) override;
|
|
|
|
void OnEnvironmentEstimationComplete(int session_id) override;
|
|
|
|
void OnSoundStart(int session_id) override;
|
|
|
|
void OnSoundEnd(int session_id) override;
|
|
|
|
void OnAudioEnd(int session_id) override;
|
|
|
|
void OnRecognitionEnd(int session_id) override;
|
|
|
|
void OnRecognitionResults(
|
2018-04-18 01:44:10 +00:00
|
|
|
int session_id,
|
2018-10-02 22:11:00 +00:00
|
|
|
const std::vector<blink::mojom::SpeechRecognitionResultPtr>&) override;
|
2014-12-16 01:15:56 +00:00
|
|
|
void OnRecognitionError(
|
2018-04-18 01:44:10 +00:00
|
|
|
int session_id,
|
2018-10-02 22:11:00 +00:00
|
|
|
const blink::mojom::SpeechRecognitionError& error) override;
|
2018-04-18 01:44:10 +00:00
|
|
|
void OnAudioLevelsChange(int session_id,
|
|
|
|
float volume,
|
2014-12-16 01:15:56 +00:00
|
|
|
float noise_volume) override;
|
2014-10-08 03:55:14 +00:00
|
|
|
|
|
|
|
// content::SpeechRecognitionManagerDelegate:
|
2014-12-16 01:15:56 +00:00
|
|
|
void CheckRecognitionIsAllowed(
|
2014-10-08 03:55:14 +00:00
|
|
|
int session_id,
|
2017-08-20 21:53:03 +00:00
|
|
|
base::OnceCallback<void(bool ask_user, bool is_allowed)> callback)
|
|
|
|
override;
|
2014-12-16 01:15:56 +00:00
|
|
|
content::SpeechRecognitionEventListener* GetEventListener() override;
|
|
|
|
bool FilterProfanities(int render_process_id) override;
|
2014-10-08 03:55:14 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-10-08 03:55:14 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|