#include "chrome/browser/ui/tabs/tab_strip_prefs.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/tabs/features.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/common/pref_names.h"
#include "components/pref_registry/pref_registry_syncable.h"
#include "components/prefs/pref_service.h"
namespace {
std::optional<bool> g_tab_search_trailing_tabstrip_at_startup = …;
}
namespace tabs {
bool GetDefaultTabSearchRightAligned() { … }
void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { … }
bool GetTabSearchTrailingTabstrip(const Profile* profile) { … }
void SetTabSearchRightAlignedForTesting(bool is_right_aligned) { … }
}