#ifndef CHROME_BROWSER_APPS_LINK_CAPTURING_WEB_APPS_INTENT_PICKER_DELEGATE_H_
#define CHROME_BROWSER_APPS_LINK_CAPTURING_WEB_APPS_INTENT_PICKER_DELEGATE_H_
#include <string>
#include "base/memory/raw_ref.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/apps/link_capturing/apps_intent_picker_delegate.h"
#include "chrome/browser/apps/link_capturing/intent_picker_info.h"
#include "chrome/browser/web_applications/web_app_icon_manager.h"
#include "components/webapps/common/web_app_id.h"
#include "url/gurl.h"
class Profile;
namespace content {
class WebContents;
}
namespace web_app {
class WebAppProvider;
}
namespace apps {
#if BUILDFLAG(IS_MAC)
using MacAppInfo = std::optional<IntentPickerAppInfo>;
#endif
class WebAppsIntentPickerDelegate : public AppsIntentPickerDelegate { … };
}
#endif