![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 128.0.6571.0 * 5636652: [4/n] Introduce RenderInputRouterClient and move InputRouterClient implementation to RenderInputRouter.5636652
* 5655811: Revert "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al"""5655811
* 5581006: [tracing] Forward startup tracing config as shmem5581006
* chore: fixup patch indices * 5608450: [Views AX] Move Image Auto Captioning strings to ui/5608450
* 5648900: [Extensions] Move ExtensionAPIEnabledForServiceWorkerScript()5648900
* 5651681: Remove Web Speech API profanity masking5651681
* 5651361: `content::RenderFrame::GetBrowserInterfaceBroker`: return a const-ref.5651361
* 5604943: Start capture of toolbar after gesture end events are received5604943
* 5624392: [BRP] Enforce raw_ptr/ref in Renderer code5624392
* 5659259: Portals: Remove WebContentsView::TransferDragSecurityInfo5659259
* 5230721: Move ComposeStatus to components/compose5230721
* 5647894: [api] Cleanup usages of v8::ReturnValue<void>::Set[NonEmpty](..)5647894
--------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
60 lines
1.9 KiB
C++
60 lines
1.9 KiB
C++
// Copyright (c) 2014 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/electron_speech_recognition_manager_delegate.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "base/functional/callback.h"
|
|
|
|
namespace electron {
|
|
|
|
ElectronSpeechRecognitionManagerDelegate::
|
|
ElectronSpeechRecognitionManagerDelegate() = default;
|
|
|
|
ElectronSpeechRecognitionManagerDelegate::
|
|
~ElectronSpeechRecognitionManagerDelegate() = default;
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnRecognitionStart(
|
|
int session_id) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnAudioStart(int session_id) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnSoundStart(int session_id) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnSoundEnd(int session_id) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnAudioEnd(int session_id) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnRecognitionEnd(
|
|
int session_id) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnRecognitionResults(
|
|
int session_id,
|
|
const std::vector<media::mojom::WebSpeechRecognitionResultPtr>& results) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnRecognitionError(
|
|
int session_id,
|
|
const media::mojom::SpeechRecognitionError& error) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::OnAudioLevelsChange(
|
|
int session_id,
|
|
float volume,
|
|
float noise_volume) {}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::CheckRecognitionIsAllowed(
|
|
int session_id,
|
|
base::OnceCallback<void(bool ask_user, bool is_allowed)> callback) {
|
|
std::move(callback).Run(true, true);
|
|
}
|
|
|
|
content::SpeechRecognitionEventListener*
|
|
ElectronSpeechRecognitionManagerDelegate::GetEventListener() {
|
|
return this;
|
|
}
|
|
|
|
void ElectronSpeechRecognitionManagerDelegate::BindSpeechRecognitionContext(
|
|
mojo::PendingReceiver<media::mojom::SpeechRecognitionContext> receiver) {}
|
|
|
|
} // namespace electron
|