chromium/ios/chrome/browser/ui/toolbar/buttons/toolbar_style.h

// Copyright 2017 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_TOOLBAR_BUTTONS_TOOLBAR_STYLE_H_
#define IOS_CHROME_BROWSER_UI_TOOLBAR_BUTTONS_TOOLBAR_STYLE_H_

// Enum defining the different styles for the toolbar.
enum class ToolbarStyle {
  // Normal (non-incognito) style.
  kNormal,
  // Incognito style.
  kIncognito,
};

#endif  // IOS_CHROME_BROWSER_UI_TOOLBAR_BUTTONS_TOOLBAR_STYLE_H_