OLD | NEW |
---|---|
(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 #include "content/browser/speech/speech_recognition_engine.h" | |
6 | |
7 namespace speech { | |
8 | |
9 SpeechRecognitionEngineConfig::SpeechRecognitionEngineConfig() | |
10 : filter_profanities(false), | |
11 audio_sample_rate(16000), | |
Satish
2012/04/27 10:04:41
can these be moved to constants in an anonymous na
Primiano Tucci (use gerrit)
2012/04/27 15:58:44
Done. Even if IMHO doesn't seem such a big deal.
| |
12 audio_num_bits_per_sample(16) { | |
13 } | |
14 | |
15 SpeechRecognitionEngineConfig::~SpeechRecognitionEngineConfig() { | |
16 } | |
17 | |
18 } // namespace speech | |
OLD | NEW |