#ifndef CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_HEADER_PANEL_H_
#define CHROME_BROWSER_UI_VIEWS_APPS_APP_INFO_DIALOG_APP_INFO_HEADER_PANEL_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "chrome/browser/extensions/chrome_app_icon_delegate.h"
#include "chrome/browser/ui/views/apps/app_info_dialog/app_info_panel.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/metadata/view_factory.h"
class Profile;
namespace extensions {
class Extension;
}
namespace views {
class ImageView;
}
namespace test {
class AppInfoDialogTestApi;
}
class AppInfoHeaderPanel : public AppInfoPanel,
public extensions::ChromeAppIconDelegate { … };
BEGIN_VIEW_BUILDER(, AppInfoHeaderPanel, AppInfoPanel)
END_VIEW_BUILDER
DEFINE_VIEW_BUILDER(…)
#endif