// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SUPERVISED_USER_EXTENSION_ICON_LOADER_H_ #define CHROME_BROWSER_SUPERVISED_USER_EXTENSION_ICON_LOADER_H_ #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" namespace content { class BrowserContext; } namespace gfx { class Image; class ImageSkia; } // namespace gfx namespace extensions { class Extension; // Loads an extension icon from local resources. Only installed extensions will // have a local resource available. If the local resource is not available, a // default icon is returned. class ExtensionIconLoader { … }; } // namespace extensions #endif // CHROME_BROWSER_SUPERVISED_USER_EXTENSION_ICON_LOADER_H_