blob: 2134f0cc17c75b6b01ee148363b5f76dabd3068b [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/browser/installability_error.h"
#include <utility>
namespace content {
InstallabilityErrorArgument::InstallabilityErrorArgument(std::string name,
std::string value)
: name(std::move(name)), value(std::move(value)) {}
bool InstallabilityErrorArgument::operator==(
const InstallabilityErrorArgument& other) const {
return name == other.name && value == other.value;
}
InstallabilityErrorArgument::~InstallabilityErrorArgument() = default;
InstallabilityError::InstallabilityError() = default;
InstallabilityError::InstallabilityError(std::string error_id)
: error_id(std::move(error_id)) {}
InstallabilityError::InstallabilityError(const InstallabilityError& other) =
default;
InstallabilityError::InstallabilityError(InstallabilityError&& other) = default;
bool InstallabilityError::operator==(const InstallabilityError& other) const {
return error_id == other.error_id &&
installability_error_arguments == other.installability_error_arguments;
}
InstallabilityError::~InstallabilityError() = default;
} // namespace content