#ifndef CHROME_BROWSER_WEB_APPLICATIONS_ISOLATED_WEB_APPS_REMOVE_ISOLATED_WEB_APP_DATA_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_ISOLATED_WEB_APPS_REMOVE_ISOLATED_WEB_APP_DATA_H_
#include "base/functional/callback_forward.h"
#include "chrome/browser/web_applications/web_app.h"
class Profile;
namespace url {
class Origin;
}
namespace web_app {
class IsolatedWebAppStorageLocation;
void RemoveIsolatedWebAppBrowsingData(Profile* profile,
const url::Origin& iwa_origin,
base::OnceClosure callback);
void CloseAndDeleteBundle(Profile* profile,
const IsolatedWebAppStorageLocation& location,
base::OnceClosure callback);
}
#endif