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

Side by Side Diff: content/public/common/tts_utterance_request.cc

Issue 12589005: Implement web speech synthesis. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webtts
Patch Set: Created 7 years, 9 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 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/public/common/tts_utterance_request.h"
6
7 namespace content {
8
9 TtsUtteranceRequest::TtsUtteranceRequest()
10 : id(0),
11 volume(1.0),
12 rate(1.0),
13 pitch(1.0) {
14 }
15
16 TtsUtteranceRequest::~TtsUtteranceRequest() {
17 }
18
19 TtsVoice::TtsVoice()
20 : local_service(true),
21 is_default(false) {
22 }
23
24 TtsVoice::~TtsVoice() {
25 }
26
27 TtsUtteranceResponse::TtsUtteranceResponse()
28 : id(0) {
29 }
30
31 TtsUtteranceResponse::~TtsUtteranceResponse() {
32 }
33
34 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698