Re-enable index-basics-workers test to see if still times
[chromium-blink-merge.git] / content / public / browser / speech_recognition_preferences.h
blobd003b64a38de43cacc7072b281e4c9054d5179e2
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"
10 namespace content {
12 class SpeechRecognitionPreferences
13 : public base::RefCountedThreadSafe<SpeechRecognitionPreferences> {
14 public:
15 virtual bool FilterProfanities() const = 0;
17 protected:
18 virtual ~SpeechRecognitionPreferences() {}
20 private:
21 friend class base::RefCountedThreadSafe<SpeechRecognitionPreferences>;
24 } // namespace content
26 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_PREFERENCES_H_