blob: 5656769c030b3e4c5581e5186138e60c747621b7 [file] [log] [blame]
// Copyright 2025 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_SHARE_EXTENSION_ACCOUNT_PICKER_DELEGATE_H_
#define IOS_CHROME_SHARE_EXTENSION_ACCOUNT_PICKER_DELEGATE_H_
#import <Foundation/Foundation.h>
@class AccountPickerTable;
@class AccountInfo;
// Delegate protocol for `AccountPickerTable`.
@protocol AccountPickerDelegate
- (void)didSelectAccountInTable:(AccountPickerTable*)table
selectedAccount:(AccountInfo*)selectedAccount;
@end
#endif // IOS_CHROME_SHARE_EXTENSION_ACCOUNT_PICKER_DELEGATE_H_