| // 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_BROWSER_DATA_IMPORT_PUBLIC_ACCESSIBILITY_UTILS_H_ |
| #define IOS_CHROME_BROWSER_DATA_IMPORT_PUBLIC_ACCESSIBILITY_UTILS_H_ |
| |
| #import <Foundation/Foundation.h> |
| |
| /// Returns the accessibility identifier to set on a `ImportDataItemTableView`. |
| NSString* GetImportDataItemTableViewAccessibilityIdentifier(); |
| |
| /// Returns the accessibility identifier to set on a cell in the |
| /// `ImportDataItemTableView`. |
| NSString* GetImportDataItemTableViewCellAccessibilityIdentifier( |
| NSUInteger cell_index); |
| |
| #endif // IOS_CHROME_BROWSER_DATA_IMPORT_PUBLIC_ACCESSIBILITY_UTILS_H_ |