chromium/components/services/app_service/public/cpp/stub_icon_loader.cc

// Copyright 2019 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/stub_icon_loader.h"

#include <utility>

#include "base/containers/contains.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/image/image_skia_rep.h"

namespace apps {

StubIconLoader::StubIconLoader() = default;

StubIconLoader::~StubIconLoader() = default;

std::optional<IconKey> StubIconLoader::GetIconKey(const std::string& id) {}

std::unique_ptr<IconLoader::Releaser> StubIconLoader::LoadIconFromIconKey(
    const std::string& id,
    const IconKey& icon_key,
    IconType icon_type,
    int32_t size_hint_in_dip,
    bool allow_placeholder_icon,
    apps::LoadIconCallback callback) {}

int StubIconLoader::NumLoadIconFromIconKeyCalls() {}

}  // namespace apps