blob: 1d21b9dd366d1373b545be970aa662657b73eda0 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module blink.mojom;
// Used by the browser's speech recognition engine to indicate the reason for a
// speech recognition error.
enum SpeechRecognitionErrorCode {
kNone,
kNoSpeech,
kAborted,
kAudioCapture,
kNetwork,
kNotAllowed,
kServiceNotAllowed,
kBadGrammar,
kLanguageNotSupported,
kNoMatch
};