1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48

content / public / browser / installability_error.cc [blame]

// 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)
    : 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;

std::ostream& operator<<(std::ostream& os, const InstallabilityError& error) {
  os << "[" << error.error_id;
  for (const auto& arg : error.installability_error_arguments)
    os << ", " << arg.name << "=" << arg.value;
  os << "]";

  return os;
}

}  // namespace content