Chromium Code Reviews| 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 CONTENT_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| 6 #define CONTENT_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 6 #define CONTENT_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "content/common/speech_input_result.h" | 9 #include "content/common/speech_input_result.h" |
| 10 #include "ui/gfx/rect.h" | 10 #include "ui/gfx/rect.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 int render_process_id, | 57 int render_process_id, |
| 58 int render_view_id, | 58 int render_view_id, |
| 59 const gfx::Rect& element_rect, | 59 const gfx::Rect& element_rect, |
| 60 const std::string& language, | 60 const std::string& language, |
| 61 const std::string& grammar, | 61 const std::string& grammar, |
| 62 const std::string& origin_url) = 0; | 62 const std::string& origin_url) = 0; |
| 63 virtual void CancelRecognition(int caller_id) = 0; | 63 virtual void CancelRecognition(int caller_id) = 0; |
| 64 virtual void StopRecording(int caller_id) = 0; | 64 virtual void StopRecording(int caller_id) = 0; |
| 65 | 65 |
| 66 virtual void CancelAllRequestsWithDelegate(Delegate* delegate) = 0; | 66 virtual void CancelAllRequestsWithDelegate(Delegate* delegate) = 0; |
| 67 | |
| 68 void NotifyCensorResults(bool censor_speech_results) { | |
|
Satish
2011/07/19 08:22:39
suggest renaming to set_censor_results(), this goe
gshires
2011/07/19 22:56:31
Done.
| |
| 69 profanity_filter_ = censor_speech_results ? 2 : 0; } | |
|
Satish
2011/07/19 08:22:39
indent to left by 2 spaces and move closing brace
gshires
2011/07/19 22:56:31
Shortened to a single line
| |
| 70 | |
| 71 int ProfanityFilter() { return profanity_filter_; } | |
|
Satish
2011/07/19 08:22:39
getters have the same name as the member variable
gshires
2011/07/19 22:56:31
Done.
| |
| 72 private: | |
| 73 int profanity_filter_; | |
|
Satish
2011/07/19 08:22:39
It may be preferable to have this as a boolean (e.
gshires
2011/07/19 22:56:31
Done.
| |
| 67 }; | 74 }; |
| 68 | 75 |
| 69 // This typedef is to workaround the issue with certain versions of | 76 // This typedef is to workaround the issue with certain versions of |
| 70 // Visual Studio where it gets confused between multiple Delegate | 77 // Visual Studio where it gets confused between multiple Delegate |
| 71 // classes and gives a C2500 error. (I saw this error on the try bots - | 78 // classes and gives a C2500 error. (I saw this error on the try bots - |
| 72 // the workaround was not needed for my machine). | 79 // the workaround was not needed for my machine). |
| 73 typedef SpeechInputManager::Delegate SpeechInputManagerDelegate; | 80 typedef SpeechInputManager::Delegate SpeechInputManagerDelegate; |
| 74 | 81 |
| 75 } // namespace speech_input | 82 } // namespace speech_input |
| 76 | 83 |
| 77 #endif // CONTENT_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ | 84 #endif // CONTENT_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| OLD | NEW |