910e62b5创建于 1月15日历史提交
// 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_