// Copyright 2023 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_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUPS_CONSTANTS_H_
#define IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUPS_CONSTANTS_H_
#import <UIKit/UIKit.h>
// Accessibility identifiers for the tab group creation view.
extern NSString* const kCreateTabGroupViewIdentifier;
extern NSString* const kCreateTabGroupTextFieldIdentifier;
extern NSString* const kCreateTabGroupTextFieldClearButtonIdentifier;
extern NSString* const kCreateTabGroupCreateButtonIdentifier;
extern NSString* const kCreateTabGroupCancelButtonIdentifier;
// Accessibility identifiers for the tab group view.
extern NSString* const kTabGroupViewIdentifier;
extern NSString* const kTabGroupViewTitleIdentifier;
extern NSString* const kTabGroupNewTabButtonIdentifier;
extern NSString* const kTabGroupOverflowMenuButtonIdentifier;
// Accessibility identifiers for the Tab Groups panel in Tab Grid.
extern NSString* const kTabGroupsPanelIdentifier;
#endif // IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUPS_CONSTANTS_H_