// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_EVENT_LISTENER_H_ #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_EVENT_LISTENER_H_ #include "content/common/content_export.h" #include "media/mojo/mojom/speech_recognition_result.mojom.h" namespace media::mojom { class SpeechRecognitionError; } // namespace media::mojom namespace content { // The interface to be implemented by consumers interested in receiving // speech recognition events. class CONTENT_EXPORT SpeechRecognitionEventListener { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_EVENT_LISTENER_H_