| // 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_AUTHENTICATION_UI_BUNDLED_ACCOUNT_MENU_ACCOUNT_MENU_CONSTANTS_H_ |
| #define IOS_CHROME_BROWSER_AUTHENTICATION_UI_BUNDLED_ACCOUNT_MENU_ACCOUNT_MENU_CONSTANTS_H_ |
| |
| #import <Foundation/Foundation.h> |
| |
| // The accessibility identifier of the view controller's view. |
| extern NSString* const kAccountMenuTableViewId; |
| // The accessibility identifier of the view controlle's close button. |
| extern NSString* const kAccountMenuCloseButtonId; |
| // The accessibility identifier of the view controlle's ellipsis button. |
| extern NSString* const kAccountMenuSecondaryActionMenuButtonId; |
| // The accessibility identifier of the Error mmesage. |
| extern NSString* const kAccountMenuErrorMessageId; |
| // The accessibility identifier of the Error button. |
| extern NSString* const kAccountMenuErrorActionButtonId; |
| // The accessibility identifier of the Add Account. |
| extern NSString* const kAccountMenuAddAccountButtonId; |
| // The accessibility identifier of the Sign out. |
| extern NSString* const kAccountMenuSignoutButtonId; |
| // The accessibility identifier for the secondary accounts buttons. |
| extern NSString* const kAccountMenuSecondaryAccountButtonId; |
| // The accessibility identifier for the account menu activity indicator. |
| extern NSString* const kAccountMenuActivityIndicatorId; |
| |
| #endif // IOS_CHROME_BROWSER_AUTHENTICATION_UI_BUNDLED_ACCOUNT_MENU_ACCOUNT_MENU_CONSTANTS_H_ |