blob: c1b2ced70b335a1fac4f3d38c9f090f7f652a7c0 [file]
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/user_data_importer/common/importer_data_types.h"
#include "build/build_config.h"
namespace user_data_importer {
SourceProfile::SourceProfile()
: importer_type(TYPE_UNKNOWN), services_supported(0) {}
SourceProfile::SourceProfile(const SourceProfile& other) = default;
SourceProfile::~SourceProfile() = default;
ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() = default;
ImporterIE7PasswordInfo::ImporterIE7PasswordInfo(
const ImporterIE7PasswordInfo& other) = default;
ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() = default;
ImporterIE7PasswordInfo& ImporterIE7PasswordInfo::operator=(
const ImporterIE7PasswordInfo& other) = default;
ImportedPasswordForm::ImportedPasswordForm() = default;
ImportedPasswordForm::ImportedPasswordForm(const ImportedPasswordForm& form) =
default;
ImportedPasswordForm::ImportedPasswordForm(
ImportedPasswordForm&& form) noexcept = default;
ImportedPasswordForm& ImportedPasswordForm::operator=(
const ImportedPasswordForm& form) = default;
ImportedPasswordForm& ImportedPasswordForm::operator=(
ImportedPasswordForm&& form) = default;
ImportedPasswordForm::~ImportedPasswordForm() = default;
} // namespace user_data_importer