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
3 // found in the LICENSE file.
4 
5 #include "build/build_config.h"
6 #include "chrome/common/importer/importer_data_types.h"
7 
8 namespace importer {
9 
SourceProfile()10 SourceProfile::SourceProfile()
11     : importer_type(TYPE_UNKNOWN),
12       services_supported(0) {
13 }
14 
15 SourceProfile::SourceProfile(const SourceProfile& other) = default;
16 
~SourceProfile()17 SourceProfile::~SourceProfile() {
18 }
19 
ImporterIE7PasswordInfo()20 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() {
21 }
22 
23 ImporterIE7PasswordInfo::ImporterIE7PasswordInfo(
24     const ImporterIE7PasswordInfo& other) = default;
25 
~ImporterIE7PasswordInfo()26 ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() {
27 }
28 
29 ImporterIE7PasswordInfo& ImporterIE7PasswordInfo::operator=(
30     const ImporterIE7PasswordInfo& other) = default;
31 
32 ImportedPasswordForm::ImportedPasswordForm() = default;
33 
34 ImportedPasswordForm::ImportedPasswordForm(const ImportedPasswordForm& form) =
35     default;
36 
37 ImportedPasswordForm::ImportedPasswordForm(ImportedPasswordForm&& form) =
38     default;
39 
40 ImportedPasswordForm& ImportedPasswordForm::operator=(
41     const ImportedPasswordForm& form) = default;
42 
43 ImportedPasswordForm& ImportedPasswordForm::operator=(
44     ImportedPasswordForm&& form) = default;
45 
46 ImportedPasswordForm::~ImportedPasswordForm() = default;
47 
48 }  // namespace importer
49