| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 6 #define CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "chrome/common/speech_input_result.h" | 9 #include "chrome/common/speech_input_result.h" |
| 10 #include "gfx/rect.h" | 10 #include "gfx/rect.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 virtual void SetRecognitionResult( | 25 virtual void SetRecognitionResult( |
| 26 int caller_id, | 26 int caller_id, |
| 27 const SpeechInputResultArray& result) = 0; | 27 const SpeechInputResultArray& result) = 0; |
| 28 virtual void DidCompleteRecording(int caller_id) = 0; | 28 virtual void DidCompleteRecording(int caller_id) = 0; |
| 29 virtual void DidCompleteRecognition(int caller_id) = 0; | 29 virtual void DidCompleteRecognition(int caller_id) = 0; |
| 30 | 30 |
| 31 protected: | 31 protected: |
| 32 virtual ~Delegate() {} | 32 virtual ~Delegate() {} |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 // Whether the speech input feature is enabled, based on the browser channel | |
| 36 // information and command line flags. | |
| 37 static bool IsFeatureEnabled(); | |
| 38 | |
| 39 // Factory method to access the singleton. We have this method here instead of | 35 // Factory method to access the singleton. We have this method here instead of |
| 40 // using Singleton<> directly in the calling code to aid tests in injection | 36 // using Singleton<> directly in the calling code to aid tests in injection |
| 41 // mocks. | 37 // mocks. |
| 42 static SpeechInputManager* Get(); | 38 static SpeechInputManager* Get(); |
| 43 // Factory method definition useful for tests. | 39 // Factory method definition useful for tests. |
| 44 typedef SpeechInputManager* (AccessorMethod)(); | 40 typedef SpeechInputManager* (AccessorMethod)(); |
| 45 | 41 |
| 46 virtual ~SpeechInputManager() {} | 42 virtual ~SpeechInputManager() {} |
| 47 | 43 |
| 48 // Handlers for requests from render views. | 44 // Handlers for requests from render views. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 66 | 62 |
| 67 // This typedef is to workaround the issue with certain versions of | 63 // This typedef is to workaround the issue with certain versions of |
| 68 // Visual Studio where it gets confused between multiple Delegate | 64 // Visual Studio where it gets confused between multiple Delegate |
| 69 // classes and gives a C2500 error. (I saw this error on the try bots - | 65 // classes and gives a C2500 error. (I saw this error on the try bots - |
| 70 // the workaround was not needed for my machine). | 66 // the workaround was not needed for my machine). |
| 71 typedef SpeechInputManager::Delegate SpeechInputManagerDelegate; | 67 typedef SpeechInputManager::Delegate SpeechInputManagerDelegate; |
| 72 | 68 |
| 73 } // namespace speech_input | 69 } // namespace speech_input |
| 74 | 70 |
| 75 #endif // CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 71 #endif // CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| OLD | NEW |