Chromium Code Reviews| Index: content/browser/speech/speech_recognizer.h |
| diff --git a/content/browser/speech/speech_recognizer.h b/content/browser/speech/speech_recognizer.h |
| index f49b3ea9c237a625abd56d75b2104a88294f1c62..0fce9430bc9db9629a0611bb24e2b928c9c7a625 100644 |
| --- a/content/browser/speech/speech_recognizer.h |
| +++ b/content/browser/speech/speech_recognizer.h |
| @@ -82,6 +82,7 @@ class SpeechRecognizer |
| int caller_id, |
| const std::string& language, |
| const std::string& grammar, |
| + int profanity_filter, |
|
Satish
2011/07/21 08:15:03
missed changing this to 'bool censor_results'
gshires
2011/07/21 18:53:12
Done.
|
| const std::string& hardware_info, |
| const std::string& origin_url); |
| virtual ~SpeechRecognizer(); |
| @@ -131,6 +132,7 @@ class SpeechRecognizer |
| int caller_id_; |
| std::string language_; |
| std::string grammar_; |
| + int profanity_filter_; |
|
Satish
2011/07/21 08:15:03
ditto
gshires
2011/07/21 18:53:12
Done.
|
| std::string hardware_info_; |
| std::string origin_url_; |