chromium/chrome/browser/extensions/menu_icon_loader.h

// 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_EXTENSIONS_MENU_ICON_LOADER_H_
#define CHROME_BROWSER_EXTENSIONS_MENU_ICON_LOADER_H_

#include "chrome/browser/extensions/menu_manager.h"

namespace content {
class BrowserContext;
}  // namespace content

namespace gfx {
class Image;
}  // namespace gfx

namespace extensions {
class Extension;

// This is an interface class to be used in the Context Menus API code to load
// the icon to use for the context menu.
class MenuIconLoader {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_MENU_ICON_LOADER_H_