// 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 "components/privacy_sandbox/tpcd_pref_names.h" #include "components/prefs/pref_registry_simple.h" #include "components/privacy_sandbox/tpcd_utils.h" namespace tpcd::experiment { namespace prefs { // Local State Prefs const char kTPCDExperimentClientState[] = …; const char kTPCDExperimentClientStateVersion[] = …; // Profile Prefs const char kTPCDExperimentProfileState[] = …; } // namespace prefs void RegisterLocalStatePrefs(PrefRegistrySimple* registry) { … } void RegisterProfilePrefs(PrefRegistrySimple* registry) { … } } // namespace tpcd::experiment