261954137b
* chore: bump chromium in DEPS to 128.0.6571.0 Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> * 5636652: [4/n] Introduce RenderInputRouterClient and move InputRouterClient implementation to RenderInputRouter. https://chromium-review.googlesource.com/c/chromium/src/+/5636652 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5655811: Revert "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al""" https://chromium-review.googlesource.com/c/chromium/src/+/5655811 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5581006: [tracing] Forward startup tracing config as shmem https://chromium-review.googlesource.com/c/chromium/src/+/5581006 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: fixup patch indices Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5608450: [Views AX] Move Image Auto Captioning strings to ui/ https://chromium-review.googlesource.com/c/chromium/src/+/5608450 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5648900: [Extensions] Move ExtensionAPIEnabledForServiceWorkerScript() https://chromium-review.googlesource.com/c/chromium/src/+/5648900 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5651681: Remove Web Speech API profanity masking https://chromium-review.googlesource.com/c/chromium/src/+/5651681 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5651361: `content::RenderFrame::GetBrowserInterfaceBroker`: return a const-ref. https://chromium-review.googlesource.com/c/chromium/src/+/5651361 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5604943: Start capture of toolbar after gesture end events are received https://chromium-review.googlesource.com/c/chromium/src/+/5604943 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5624392: [BRP] Enforce raw_ptr/ref in Renderer code https://chromium-review.googlesource.com/c/chromium/src/+/5624392 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5659259: Portals: Remove WebContentsView::TransferDragSecurityInfo https://chromium-review.googlesource.com/c/chromium/src/+/5659259 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5230721: Move ComposeStatus to components/compose https://chromium-review.googlesource.com/c/chromium/src/+/5230721 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5647894: [api] Cleanup usages of v8::ReturnValue<void>::Set[NonEmpty](..) https://chromium-review.googlesource.com/c/v8/v8/+/5647894 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
58 lines
2.2 KiB
C++
58 lines
2.2 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.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
|
#define ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "content/public/browser/speech_recognition_event_listener.h"
|
|
#include "content/public/browser/speech_recognition_manager_delegate.h"
|
|
|
|
namespace electron {
|
|
|
|
class ElectronSpeechRecognitionManagerDelegate
|
|
: public content::SpeechRecognitionManagerDelegate,
|
|
public content::SpeechRecognitionEventListener {
|
|
public:
|
|
ElectronSpeechRecognitionManagerDelegate();
|
|
~ElectronSpeechRecognitionManagerDelegate() override;
|
|
|
|
// disable copy
|
|
ElectronSpeechRecognitionManagerDelegate(
|
|
const ElectronSpeechRecognitionManagerDelegate&) = delete;
|
|
ElectronSpeechRecognitionManagerDelegate& operator=(
|
|
const ElectronSpeechRecognitionManagerDelegate&) = delete;
|
|
|
|
// content::SpeechRecognitionEventListener:
|
|
void OnRecognitionStart(int session_id) override;
|
|
void OnAudioStart(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(
|
|
int session_id,
|
|
const std::vector<media::mojom::WebSpeechRecognitionResultPtr>&) override;
|
|
void OnRecognitionError(
|
|
int session_id,
|
|
const media::mojom::SpeechRecognitionError& error) override;
|
|
void OnAudioLevelsChange(int session_id,
|
|
float volume,
|
|
float noise_volume) override;
|
|
|
|
// content::SpeechRecognitionManagerDelegate:
|
|
void CheckRecognitionIsAllowed(
|
|
int session_id,
|
|
base::OnceCallback<void(bool ask_user, bool is_allowed)> callback)
|
|
override;
|
|
content::SpeechRecognitionEventListener* GetEventListener() override;
|
|
void BindSpeechRecognitionContext(
|
|
mojo::PendingReceiver<media::mojom::SpeechRecognitionContext> receiver)
|
|
override;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_ELECTRON_SPEECH_RECOGNITION_MANAGER_DELEGATE_H_
|