blob: e72a1446985c01011ec3c2c0b9d776f575e833a0 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/services/app_service/public/cpp/icon_info.h"
#include <utility>
namespace apps {
namespace {
const char* const kPurposeStrings[] = {"kAny", "kMonochrome", "kMaskable"};
} // namespace
// IconInfo
IconInfo::IconInfo() = default;
IconInfo::IconInfo(const GURL& url, SquareSizePx size)
: url(url), square_size_px(size) {}
IconInfo::IconInfo(const IconInfo&) = default;
IconInfo::IconInfo(IconInfo&&) noexcept = default;
IconInfo::~IconInfo() = default;
IconInfo& IconInfo::operator=(const IconInfo&) = default;
IconInfo& IconInfo::operator=(IconInfo&&) noexcept = default;
base::Value IconInfo::AsDebugValue() const {
base::Value root(base::Value::Type::DICT);
root.SetStringKey("url", url.spec());
root.SetKey("square_size_px",
square_size_px ? base::Value(*square_size_px) : base::Value());
root.SetStringKey("purpose", kPurposeStrings[static_cast<int>(purpose)]);
return root;
}
bool IconInfo::operator==(const IconInfo& other) const {
return std::tie(url, square_size_px, purpose) ==
std::tie(other.url, other.square_size_px, other.purpose);
}
} // namespace apps