chromium/chrome/browser/apps/link_capturing/enable_link_capturing_infobar_delegate.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_APPS_LINK_CAPTURING_ENABLE_LINK_CAPTURING_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_APPS_LINK_CAPTURING_ENABLE_LINK_CAPTURING_INFOBAR_DELEGATE_H_

#include <memory>
#include <string>

#include "base/memory/raw_ref.h"
#include "components/infobars/core/confirm_infobar_delegate.h"
#include "components/webapps/common/web_app_id.h"

class Profile;

namespace infobars {
class InfoBar;
}

namespace content {
class WebContents;
}

namespace gfx {
struct VectorIcon;
}

namespace web_app {
class WebAppProvider;
}

namespace apps {

// An infobar delegate asking if the user wants to enable link capturing for
// the given application. This is only created when the app doesn't have link
// capturing already enabled.
// Note: This InfoBar is only used on non-CrOS platforms.
class EnableLinkCapturingInfoBarDelegate : public ConfirmInfoBarDelegate {};

}  // namespace apps

#endif  // CHROME_BROWSER_APPS_LINK_CAPTURING_ENABLE_LINK_CAPTURING_INFOBAR_DELEGATE_H_