#ifndef CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_
#define CHROME_BROWSER_UI_APPS_APP_INFO_DIALOG_H_
#include <string>
#include "base/functional/callback_forward.h"
class Profile;
namespace content {
class WebContents;
}
namespace extensions {
class Extension;
}
bool CanPlatformShowAppInfoDialog();
bool CanShowAppInfoDialog(Profile* profile, const std::string& extension_id);
void ShowAppInfoInNativeDialog(content::WebContents* web_contents,
Profile* profile,
const extensions::Extension* app,
base::OnceClosure close_callback);
#endif