#include "android_webview/browser/aw_speech_recognition_manager_delegate.h"
#include <string>
#include "base/functional/bind.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/speech_recognition_manager.h"
#include "content/public/browser/speech_recognition_session_context.h"
#include "content/public/browser/web_contents.h"
#include "third_party/blink/public/mojom/speech/speech_recognition_error.mojom.h"
#include "third_party/blink/public/mojom/speech/speech_recognition_result.mojom.h"
using content::BrowserThread;
namespace android_webview {
AwSpeechRecognitionManagerDelegate::AwSpeechRecognitionManagerDelegate() {}
AwSpeechRecognitionManagerDelegate::~AwSpeechRecognitionManagerDelegate() {}
void AwSpeechRecognitionManagerDelegate::OnRecognitionStart(int session_id) {}
void AwSpeechRecognitionManagerDelegate::OnAudioStart(int session_id) {}
void AwSpeechRecognitionManagerDelegate::OnEnvironmentEstimationComplete(
int session_id) {}
void AwSpeechRecognitionManagerDelegate::OnSoundStart(int session_id) {}
void AwSpeechRecognitionManagerDelegate::OnSoundEnd(int session_id) {}
void AwSpeechRecognitionManagerDelegate::OnAudioEnd(int session_id) {}
void AwSpeechRecognitionManagerDelegate::OnRecognitionResults(
int session_id,
const std::vector<blink::mojom::SpeechRecognitionResultPtr>& result) {}
void AwSpeechRecognitionManagerDelegate::OnRecognitionError(
int session_id,
const blink::mojom::SpeechRecognitionError& error) {}
void AwSpeechRecognitionManagerDelegate::OnAudioLevelsChange(
int session_id,
float volume,
float noise_volume) {}
void AwSpeechRecognitionManagerDelegate::OnRecognitionEnd(int session_id) {}
void AwSpeechRecognitionManagerDelegate::CheckRecognitionIsAllowed(
int session_id,
base::OnceCallback<void(bool ask_user, bool is_allowed)> callback) {
DCHECK_CURRENTLY_ON(BrowserThread::IO);
const content::SpeechRecognitionSessionContext& context =
content::SpeechRecognitionManager::GetInstance()->GetSessionContext(
session_id);
DCHECK_NE(context.render_process_id, 0);
int render_process_id = context.render_process_id;
int render_frame_id = context.render_frame_id;
if (context.embedder_render_process_id) {
render_process_id = context.embedder_render_process_id;
render_frame_id = context.embedder_render_frame_id;
}
content::GetUIThreadTaskRunner({})->PostTask(
FROM_HERE, base::BindOnce(&CheckRenderFrameType, std::move(callback),
render_process_id, render_frame_id));
}
content::SpeechRecognitionEventListener*
AwSpeechRecognitionManagerDelegate::GetEventListener() {
return this;
}
bool AwSpeechRecognitionManagerDelegate::FilterProfanities(
int render_process_id) {
return false;
}
void AwSpeechRecognitionManagerDelegate::CheckRenderFrameType(
base::OnceCallback<void(bool ask_user, bool is_allowed)> callback,
int render_process_id,
int render_frame_id) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
content::GetIOThreadTaskRunner({})->PostTask(
FROM_HERE,
base::BindOnce(std::move(callback), true ,
true ));
}
}