// 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. #include "chrome/browser/ui/tabs/features.h" #include "base/feature_list.h" #include "chrome/browser/buildflags.h" namespace tabs { // Splits pinned and unpinned tabs into separate TabStrips. // https://crbug.com/1346019 BASE_FEATURE(…); // Enables tabs to scroll in the tabstrip. https://crbug.com/951078 BASE_FEATURE(…); const char kMinimumTabWidthFeatureParameterName[] = …; // Enables tab scrolling while dragging tabs in tabstrip // https://crbug.com/1145747 BASE_FEATURE(…); const char kTabScrollingWithDraggingModeName[] = …; // Enables different methods of overflow when scrolling tabs in tabstrip // https://crbug.com/951078 BASE_FEATURE(…); const char kScrollableTabStripOverflowModeName[] = …; BASE_FEATURE(…); // Stores the tabs as a tree based data structure instead of a // vector in the tabstrip model. b/323937237 BASE_FEATURE(…); bool CanShowTabSearchPositionSetting() { … } } // namespace tabs