#ifndef COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_CLIENT_IOS_BRIDGE_H_
#define COMPONENTS_AUTOFILL_IOS_BROWSER_AUTOFILL_CLIENT_IOS_BRIDGE_H_
#import <vector>
#import "base/functional/callback_forward.h"
#import "base/memory/weak_ptr.h"
#import "components/autofill/core/common/unique_ids.h"
namespace autofill {
class AutofillSuggestionDelegate;
struct Suggestion;
}
@protocol AutofillClientIOSBridge
- (void)showAutofillPopup:(const std::vector<autofill::Suggestion>&)suggestions
suggestionDelegate:
(const base::WeakPtr<autofill::AutofillSuggestionDelegate>&)delegate;
- (void)hideAutofillPopup;
- (bool)isLastQueriedField:(autofill::FieldGlobalId)fieldId;
- (void)showPlusAddressEmailOverrideNotification:
(base::OnceClosure)emailOverrideUndoCallback;
@end
#endif