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

Side by Side Diff: chrome/browser/speech/chrome_speech_recognition_preferences.h

Issue 9568002: Renamed speech input implementation from to speech_recognition_*. The namespace has been renamed fr… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased from master. Created 8 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_PREFERENCES_H_
6 #define CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_PREFERENCES_H_
7 #pragma once
8
9 #include "base/basictypes.h"
10 #include "content/public/browser/speech_recognition_preferences.h"
11
12 class PrefService;
13
14 class ChromeSpeechRecognitionPreferences
15 : public content::SpeechRecognitionPreferences {
16 public:
17 explicit ChromeSpeechRecognitionPreferences(PrefService* pref_service);
18
19 // Overridden from content::SpeechRecognitionPreferences:
20 virtual bool FilterProfanities() const OVERRIDE;
21 virtual void SetFilterProfanities(bool filter_profanities) OVERRIDE;
22
23 private:
24 virtual ~ChromeSpeechRecognitionPreferences();
25
26 // Only to be accessed and modified on the IO thread.
27 bool filter_profanities_;
28
29 DISALLOW_COPY_AND_ASSIGN(ChromeSpeechRecognitionPreferences);
30 };
31
32 #endif // CHROME_BROWSER_SPEECH_CHROME_SPEECH_RECOGNITION_PREFERENCES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698