#include "content/public/browser/installability_error.h"
#include <utility>
namespace content {
InstallabilityErrorArgument::InstallabilityErrorArgument(std::string name,
std::string value)
: … { … }
bool InstallabilityErrorArgument::operator==(
const InstallabilityErrorArgument& other) const { … }
InstallabilityErrorArgument::~InstallabilityErrorArgument() = default;
InstallabilityError::InstallabilityError() = default;
InstallabilityError::InstallabilityError(std::string error_id)
: … { … }
InstallabilityError::InstallabilityError(const InstallabilityError& other) =
default;
InstallabilityError::InstallabilityError(InstallabilityError&& other) = default;
bool InstallabilityError::operator==(const InstallabilityError& other) const { … }
InstallabilityError::~InstallabilityError() = default;
std::ostream& operator<<(std::ostream& os, const InstallabilityError& error) { … }
}