Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7084)

Unified Diff: chrome/browser/speech/chrome_speech_input_preferences.h

Issue 8199010: Fixing misleading name a in speech input setting and related variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review fixes. Landing if no problems in the bots. Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/speech/chrome_speech_input_preferences.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/chrome_speech_input_preferences.h
diff --git a/chrome/browser/speech/chrome_speech_input_preferences.h b/chrome/browser/speech/chrome_speech_input_preferences.h
index feca5a6432dc18f6dc1708704edde5e29772822b..ebfef3b1d09bd4d5719651498b6994b40f71a8ae 100644
--- a/chrome/browser/speech/chrome_speech_input_preferences.h
+++ b/chrome/browser/speech/chrome_speech_input_preferences.h
@@ -17,14 +17,14 @@ class ChromeSpeechInputPreferences : public SpeechInputPreferences {
explicit ChromeSpeechInputPreferences(PrefService* pref_service);
// SpeechInputPreferences methods.
- virtual bool censor_results() const OVERRIDE;
- virtual void set_censor_results(bool censor_results) OVERRIDE;
+ virtual bool filter_profanities() const OVERRIDE;
+ virtual void set_filter_profanities(bool filter_profanities) OVERRIDE;
private:
virtual ~ChromeSpeechInputPreferences();
// Only to be accessed and modified on the IO thread.
- bool censor_results_;
+ bool filter_profanities_;
DISALLOW_COPY_AND_ASSIGN(ChromeSpeechInputPreferences);
};
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/speech/chrome_speech_input_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698