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

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

Issue 1731483003: chrome: Add out-of-line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
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(const TtsVoice& other) = default;
23
22 TtsVoice::~TtsVoice() { 24 TtsVoice::~TtsVoice() {
23 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698