chromium/ios/chrome/browser/ui/tab_switcher/tab_grid/tab_groups/tab_group_positioner.h

// 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_POSITIONER_H_
#define IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUP_POSITIONER_H_

// Protocol used to position the tab group view.
@protocol TabGroupPositioner

// Returns the view below which the tab group should positioned below.
- (UIView*)viewAboveTabGroup;

@end

#endif  // IOS_CHROME_BROWSER_UI_TAB_SWITCHER_TAB_GRID_TAB_GROUPS_TAB_GROUP_POSITIONER_H_