#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() { … }
}