chromium/content/public/browser/installability_error.cc

// Copyright 2020 The Chromium Authors
// 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)
    :{}

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) {}

}  // namespace content