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.
5 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_PREFERENCES_H_
6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_PREFERENCES_H_
8 #include "base/memory/ref_counted.h"
12 class SpeechRecognitionPreferences
13 : public base::RefCountedThreadSafe
<SpeechRecognitionPreferences
> {
15 virtual bool FilterProfanities() const = 0;
18 virtual ~SpeechRecognitionPreferences() {}
21 friend class base::RefCountedThreadSafe
<SpeechRecognitionPreferences
>;
24 } // namespace content
26 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_PREFERENCES_H_