blob: 04a20d9dea0cf7006b8b036e1ab551968c543a4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/speech/chrome_speech_recognition_preferences.h"
#include "base/bind.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/browser_thread.h"
using content::BrowserThread;
ChromeSpeechRecognitionPreferences::ChromeSpeechRecognitionPreferences(
PrefService* pref_service)
: filter_profanities_(
pref_service->GetBoolean(prefs::kSpeechRecognitionFilterProfanities)){
}
ChromeSpeechRecognitionPreferences::~ChromeSpeechRecognitionPreferences() {
}
bool ChromeSpeechRecognitionPreferences::FilterProfanities() const {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
return filter_profanities_;
}
void ChromeSpeechRecognitionPreferences::SetFilterProfanities(
bool filter_profanities) {
if (!BrowserThread::CurrentlyOn(BrowserThread::IO)) {
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::Bind(&ChromeSpeechRecognitionPreferences::SetFilterProfanities,
this, filter_profanities));
return;
}
filter_profanities_ = filter_profanities;
}
|