// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_MOJO_MOJOM_SPEECH_RECOGNITION_RESULT_H_ #define MEDIA_MOJO_MOJOM_SPEECH_RECOGNITION_RESULT_H_ #include <optional> #include <string> #include <vector> #include "base/time/time.h" namespace media { struct HypothesisParts { … }; struct TimingInformation { … }; // A speech recognition result created by the speech service and passed to the // SpeechRecognitionRecognizerClient. struct SpeechRecognitionResult { … }; } // namespace media #endif // MEDIA_MOJO_MOJOM_SPEECH_RECOGNITION_RESULT_H_