#include "build/build_config.h"
#include "chrome/common/importer/importer_data_types.h"
namespace importer {
SourceProfile::SourceProfile()
: … { … }
SourceProfile::SourceProfile(const SourceProfile& other) = default;
SourceProfile::~SourceProfile() { … }
ImporterIE7PasswordInfo::ImporterIE7PasswordInfo() { … }
ImporterIE7PasswordInfo::ImporterIE7PasswordInfo(
const ImporterIE7PasswordInfo& other) = default;
ImporterIE7PasswordInfo::~ImporterIE7PasswordInfo() { … }
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;
}