// 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 "components/history_clusters/core/history_clusters_prefs.h" #include "components/prefs/pref_registry_simple.h" namespace history_clusters { namespace prefs { // Whether History Clusters are visible to the user. True by default. const char kVisible[] = …; // Dictionary containing the short keyword cache and associated timestamp. const char kShortCache[] = …; // Dictionary containing the "all keywords" cache and associated timestamp. const char kAllCache[] = …; // Integer controlling which tab should be opened by default. const char kLastSelectedTab[] = …; void RegisterProfilePrefs(PrefRegistrySimple* registry) { … } } // namespace prefs } // namespace history_clusters