chromium/chrome/common/importer/importer_data_types.cc

// 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 "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;

}  // namespace importer