// 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_SETTINGS_MANAGE_ACCOUNTS_UI_MANAGE_ACCOUNTS_MUTATOR_H_
#define IOS_CHROME_BROWSER_SETTINGS_MANAGE_ACCOUNTS_UI_MANAGE_ACCOUNTS_MUTATOR_H_

class GaiaId;

@protocol ManageAccountsMutator <NSObject>

// Called when remove identity is tapped.
- (void)requestRemoveIdentityWithGaiaID:(const GaiaId&)gaiaID
                               itemView:(UIView*)itemView;

// Called when the user taps to add account from the accounts management UI.
- (void)requestAddIdentityToDevice;

// Called when the user taps to sign out from the accounts management UI.
- (void)requestSignOutWithItemView:(UIView*)itemView;

@end

#endif  // IOS_CHROME_BROWSER_SETTINGS_MANAGE_ACCOUNTS_UI_MANAGE_ACCOUNTS_MUTATOR_H_
