1 // Copyright 2024 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef COMPONENTS_METRICS_DWA_DWA_PREF_NAMES_H_ 6 #define COMPONENTS_METRICS_DWA_DWA_PREF_NAMES_H_ 7 8 #include "base/component_export.h" 9 10 namespace metrics::dwa::prefs { 11 12 // Preference which stores serialized DWA logs to be uploaded. 13 COMPONENT_EXPORT(DWA) 14 extern const char kUnsentLogStoreName[]; 15 16 // Client ID which changes daily. Note that this is a local state pref which is 17 // shared between profiles. 18 COMPONENT_EXPORT(DWA) 19 extern const char kDwaClientId[]; 20 21 // Date when `kDwaClientId` was last updated. 22 COMPONENT_EXPORT(DWA) 23 extern const char kDwaClientIdLastUpdated[]; 24 25 } // namespace metrics::dwa::prefs 26 27 #endif // COMPONENTS_METRICS_DWA_DWA_PREF_NAMES_H_ 28