Merge pull request #29424 from brave/p3a-cutoff-increase

Increase reporting cutoff for date of activation/install P3A attributes
This commit is contained in:
Darnell Andries
2025-06-06 09:02:50 -07:00
committed by GitHub
+1 -1
View File
@@ -73,7 +73,7 @@ constexpr auto kNotableCountries = base::MakeFixedFlatSet<std::string_view>(
{"US", "FR", "PH", "GB", "IN", "DE", "BR", "CA", "IT", "ES",
"NL", "MX", "AU", "RU", "JP", "PL", "ID", "KR", "AR", "AT"});
constexpr base::TimeDelta kDateOmissionThreshold = base::Days(30);
constexpr base::TimeDelta kDateOmissionThreshold = base::Days(31);
std::string FormatUTCDateFromExploded(const base::Time::Exploded& exploded) {
return base::StringPrintf("%d-%02d-%02d", exploded.year, exploded.month,