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

Side by Side Diff: chrome/common/tts_utterance_request.cc

Issue 12589005: Implement web speech synthesis. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webtts
Patch Set: Fix android build Created 7 years, 7 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
« no previous file with comments | « chrome/common/tts_utterance_request.h ('k') | chrome/renderer/chrome_content_renderer_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome/common/tts_utterance_request.h"
6
7 TtsUtteranceRequest::TtsUtteranceRequest()
8 : id(0),
9 volume(1.0),
10 rate(1.0),
11 pitch(1.0) {
12 }
13
14 TtsUtteranceRequest::~TtsUtteranceRequest() {
15 }
16
17 TtsVoice::TtsVoice()
18 : local_service(true),
19 is_default(false) {
20 }
21
22 TtsVoice::~TtsVoice() {
23 }
24
25 TtsUtteranceResponse::TtsUtteranceResponse()
26 : id(0) {
27 }
28
29 TtsUtteranceResponse::~TtsUtteranceResponse() {
30 }
OLDNEW
« no previous file with comments | « chrome/common/tts_utterance_request.h ('k') | chrome/renderer/chrome_content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698