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

Side by Side Diff: content/browser/speech/speech_recognition_engine.cc

Issue 10233010: Introducing new data types and IPC messages for scripted JS speech recognition APIs (Speech CL2.0) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed according to Hans review. Created 8 years, 8 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 | Annotate | Revision Log
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 #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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698