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
|
|
|
|
|
|
|
#include "content/public/browser/speech_recognition_event_listener.h"
|
|
|
|
#include "content/public/browser/speech_recognition_manager_delegate.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
class ElectronSpeechRecognitionManagerDelegate
|
2024-07-10 13:32:50 +00:00
|
|
|
: public content::SpeechRecognitionManagerDelegate {
|
2014-10-08 03:55:14 +00:00
|
|
|
public:
|
|
|
|
ElectronSpeechRecognitionManagerDelegate();
|
2018-04-17 23:03:51 +00:00
|
|
|
~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::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;
|
2024-04-15 22:10:32 +00:00
|
|
|
void BindSpeechRecognitionContext(
|
|
|
|
mojo::PendingReceiver<media::mojom::SpeechRecognitionContext> receiver)
|
|
|
|
override;
|
2014-10-08 03:55:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|