chromium/chrome/browser/ui/tabs/tab_types.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_UI_TABS_TAB_TYPES_H_
#define CHROME_BROWSER_UI_TABS_TAB_TYPES_H_

// Potential Active states for a tab.
enum class TabActive {};

// Potential Open states for a tab.
enum class TabOpen {};

// Potential Pinned states for a tab.
enum class TabPinned {};

#endif  // CHROME_BROWSER_UI_TABS_TAB_TYPES_H_