// Copyright 2013 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_BROWSER_SPEECH_SPEECH_RECOGNIZER_H_ #define CONTENT_BROWSER_SPEECH_SPEECH_RECOGNIZER_H_ #include "base/check.h" #include "base/memory/raw_ptr.h" #include "base/memory/ref_counted.h" #include "content/common/content_export.h" namespace content { class SpeechRecognitionEventListener; // Handles speech recognition for a session (identified by |session_id|). class CONTENT_EXPORT SpeechRecognizer : public base::RefCountedThreadSafe<SpeechRecognizer> { … }; } // namespace content #endif // CONTENT_BROWSER_SPEECH_SPEECH_RECOGNIZER_H_