| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/tts_utterance_request.h" | 5 #include "chrome/common/tts_utterance_request.h" |
| 6 | 6 |
| 7 TtsUtteranceRequest::TtsUtteranceRequest() | 7 TtsUtteranceRequest::TtsUtteranceRequest() |
| 8 : id(0), | 8 : id(0), |
| 9 volume(1.0), | 9 volume(1.0), |
| 10 rate(1.0), | 10 rate(1.0), |
| 11 pitch(1.0) { | 11 pitch(1.0) { |
| 12 } | 12 } |
| 13 | 13 |
| 14 TtsUtteranceRequest::~TtsUtteranceRequest() { | 14 TtsUtteranceRequest::~TtsUtteranceRequest() { |
| 15 } | 15 } |
| 16 | 16 |
| 17 TtsVoice::TtsVoice() | 17 TtsVoice::TtsVoice() |
| 18 : local_service(true), | 18 : local_service(true), |
| 19 is_default(false) { | 19 is_default(false) { |
| 20 } | 20 } |
| 21 | 21 |
| 22 TtsVoice::~TtsVoice() { | 22 TtsVoice::~TtsVoice() { |
| 23 } | 23 } |
| 24 | |
| 25 TtsUtteranceResponse::TtsUtteranceResponse() | |
| 26 : id(0) { | |
| 27 } | |
| 28 | |
| 29 TtsUtteranceResponse::~TtsUtteranceResponse() { | |
| 30 } | |
| OLD | NEW |