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

Side by Side Diff: chrome/common/importer/importer_data_types.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "chrome/common/importer/importer_data_types.h" 6 #include "chrome/common/importer/importer_data_types.h"
7 7
8 namespace importer { 8 namespace importer {
9 9
10 SourceProfile::SourceProfile() 10 SourceProfile::SourceProfile()
11 : importer_type(TYPE_UNKNOWN), 11 : importer_type(TYPE_UNKNOWN),
12 services_supported(0) { 12 services_supported(0) {
13 } 13 }
14 14
15 SourceProfile::SourceProfile(const SourceProfile& other) = default;
16
15 SourceProfile::~SourceProfile() { 17 SourceProfile::~SourceProfile() {
16 } 18 }
17 19
18 #if defined(OS_WIN) 20 #if defined(OS_WIN)
19 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() { 21 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() {
20 } 22 }
21 23
22 ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() { 24 ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() {
23 } 25 }
24 #endif 26 #endif
25 27
26 } // namespace importer 28 } // namespace importer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698