// Copyright 2021 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/webui/tab_search/tab_search_prefs.h" #include "components/pref_registry/pref_registry_syncable.h" #include "components/prefs/pref_registry_simple.h" namespace tab_search_prefs { // Boolean pref indicating whether the Tab Search recently closed section is in // an expanded state. const char kTabSearchRecentlyClosedSectionExpanded[] = …; // Integer pref indicating which tab the Tab Search bubble should open to // when shown. const char kTabSearchTabIndex[] = …; // Boolean pref indicating whether the user should see the first run experience // when interacting with the Tab Organization UI. const char kTabOrganizationShowFRE[] = …; // Integer pref indicating which model strategy the user would like their tabs // to be organized according to. const char kTabOrganizationModelStrategy[] = …; void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { … } } // namespace tab_search_prefs