// 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_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUP_SYNC_EARL_GREY_APP_INTERFACE_H_
#define IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUP_SYNC_EARL_GREY_APP_INTERFACE_H_
#import <Foundation/Foundation.h>
// App-side implementation for TabGroupSyncEarlGrey.
@interface TabGroupSyncEarlGreyAppInterface : NSObject
// Creates and saves 3 saved tab groups.
+ (void)prepareFakeSavedTabGroups;
// Removes all saved tab groups.
+ (void)cleanup;
// Returns the number of saved tab groups.
+ (int)countOfSavedTabGroups;
@end
#endif // IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUP_SYNC_EARL_GREY_APP_INTERFACE_H_