chromium/ios/chrome/browser/autofill/ui_bundled/bottom_sheet/virtual_card_enrollment_bottom_sheet_mutator.h

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_AUTOFILL_UI_BUNDLED_BOTTOM_SHEET_VIRTUAL_CARD_ENROLLMENT_BOTTOM_SHEET_MUTATOR_H_
#define IOS_CHROME_BROWSER_AUTOFILL_UI_BUNDLED_BOTTOM_SHEET_VIRTUAL_CARD_ENROLLMENT_BOTTOM_SHEET_MUTATOR_H_

#import <Foundation/Foundation.h>

// Delegate to handle actions from the virtual card enrollment bottom sheet view
// controller.
@protocol VirtualCardEnrollmentBottomSheetMutator <NSObject>

// Handles the user accepting the virtual card enrollment prompt.
- (void)didAccept;

// Handles the user dismissing the virtual card enrollment prompt.
- (void)didCancel;

@end

#endif  // IOS_CHROME_BROWSER_AUTOFILL_UI_BUNDLED_BOTTOM_SHEET_VIRTUAL_CARD_ENROLLMENT_BOTTOM_SHEET_MUTATOR_H_