OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ |
6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ | 6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ |
7 | 7 |
8 #include "base/string16.h" | |
9 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/strings/string16.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "content/public/common/speech_recognition_result.h" | 11 #include "content/public/common/speech_recognition_result.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 class SpeechRecognitionEventListener; | 15 class SpeechRecognitionEventListener; |
16 struct SpeechRecognitionSessionConfig; | 16 struct SpeechRecognitionSessionConfig; |
17 struct SpeechRecognitionSessionContext; | 17 struct SpeechRecognitionSessionContext; |
18 | 18 |
19 // The SpeechRecognitionManager (SRM) is a singleton class that handles SR | 19 // The SpeechRecognitionManager (SRM) is a singleton class that handles SR |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 protected: | 89 protected: |
90 virtual ~SpeechRecognitionManager() {} | 90 virtual ~SpeechRecognitionManager() {} |
91 | 91 |
92 private: | 92 private: |
93 static SpeechRecognitionManager* manager_for_tests_; | 93 static SpeechRecognitionManager* manager_for_tests_; |
94 }; | 94 }; |
95 | 95 |
96 } // namespace content | 96 } // namespace content |
97 | 97 |
98 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ | 98 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ |
OLD | NEW |