#ifndef CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_VIRTUAL_CARD_MANUAL_FALLBACK_BUBBLE_CONTROLLER_IMPL_H_
#define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_VIRTUAL_CARD_MANUAL_FALLBACK_BUBBLE_CONTROLLER_IMPL_H_
#include "base/memory/raw_ptr.h"
#include "chrome/browser/ui/autofill/payments/virtual_card_manual_fallback_bubble_controller.h"
#include "chrome/browser/ui/autofill/autofill_bubble_controller_base.h"
#include "components/autofill/core/browser/metrics/payments/virtual_card_manual_fallback_bubble_metrics.h"
#include "components/autofill/core/browser/ui/payments/bubble_show_options.h"
#include "content/public/browser/web_contents_user_data.h"
namespace autofill {
class VirtualCardManualFallbackBubbleControllerImpl
: public AutofillBubbleControllerBase,
public VirtualCardManualFallbackBubbleController,
public content::WebContentsUserData<
VirtualCardManualFallbackBubbleControllerImpl> { … };
}
#endif