OLD | NEW |
(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 |
OLD | NEW |