| Index: content/public/common/speech_recognition_result.cc
|
| diff --git a/content/public/common/speech_recognition_result.cc b/content/public/common/speech_recognition_result.cc
|
| index 198b88eeb045af99640777061c5935d888ef23b8..3b31899b940ba44839d4ae112c5c422d4d192339 100644
|
| --- a/content/public/common/speech_recognition_result.cc
|
| +++ b/content/public/common/speech_recognition_result.cc
|
| @@ -6,6 +6,22 @@
|
|
|
| namespace content {
|
|
|
| +SpeechRecognitionError::SpeechRecognitionError()
|
| + : code(SPEECH_RECOGNITION_ERROR_NONE), details(0) {
|
| +}
|
| +
|
| +SpeechRecognitionError::SpeechRecognitionError(
|
| + SpeechRecognitionErrorCode code_value)
|
| + : code(code_value),
|
| + details(0) {
|
| +}
|
| +
|
| +SpeechRecognitionError::SpeechRecognitionError(
|
| + SpeechRecognitionErrorCode code_val, int details_val)
|
| + : code(code_val),
|
| + details(details_val) {
|
| +}
|
| +
|
| SpeechRecognitionResult::SpeechRecognitionResult()
|
| : error(SPEECH_RECOGNITION_ERROR_NONE) {
|
| }
|
|
|