// Copyright 2026 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_TOOLBAR_UI_BUTTONS_TOOLBAR_BUTTON_VISIBILITY_H_
#define IOS_CHROME_BROWSER_TOOLBAR_UI_BUTTONS_TOOLBAR_BUTTON_VISIBILITY_H_

#import <Foundation/Foundation.h>

// Enum defining the visibility of toolbar buttons.
enum class ToolbarButtonVisibility {
  kAlways,
  kRegularRegular,
  // Toolbar button visible for size classes corresponding to a wide layout
  // (iPhone landscape, iPad regular width window).
  kWideLayout,
  kCompactHeight,
  kWhenEnabled,
};

#endif  // IOS_CHROME_BROWSER_TOOLBAR_UI_BUTTONS_TOOLBAR_BUTTON_VISIBILITY_H_
