| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 virtual void StartRecognition(Delegate* delegate, | 56 virtual void StartRecognition(Delegate* delegate, |
| 57 int caller_id, | 57 int caller_id, |
| 58 int render_process_id, | 58 int render_process_id, |
| 59 int render_view_id, | 59 int render_view_id, |
| 60 const gfx::Rect& element_rect, | 60 const gfx::Rect& element_rect, |
| 61 const std::string& language, | 61 const std::string& language, |
| 62 const std::string& grammar, | 62 const std::string& grammar, |
| 63 const std::string& origin_url) = 0; | 63 const std::string& origin_url) = 0; |
| 64 virtual void CancelRecognition(int caller_id) = 0; | 64 virtual void CancelRecognition(int caller_id) = 0; |
| 65 virtual void StopRecording(int caller_id) = 0; | 65 virtual void StopRecording(int caller_id) = 0; |
| 66 |
| 67 virtual void CancelAllRequestsWithDelegate(Delegate* delegate) = 0; |
| 66 }; | 68 }; |
| 67 | 69 |
| 68 // This typedef is to workaround the issue with certain versions of | 70 // This typedef is to workaround the issue with certain versions of |
| 69 // Visual Studio where it gets confused between multiple Delegate | 71 // Visual Studio where it gets confused between multiple Delegate |
| 70 // classes and gives a C2500 error. (I saw this error on the try bots - | 72 // classes and gives a C2500 error. (I saw this error on the try bots - |
| 71 // the workaround was not needed for my machine). | 73 // the workaround was not needed for my machine). |
| 72 typedef SpeechInputManager::Delegate SpeechInputManagerDelegate; | 74 typedef SpeechInputManager::Delegate SpeechInputManagerDelegate; |
| 73 | 75 |
| 74 } // namespace speech_input | 76 } // namespace speech_input |
| 75 | 77 |
| 76 #endif // CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 78 #endif // CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| OLD | NEW |