// 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 "content/browser/interest_group/for_debugging_only_report_util.h" #include <optional> #include "base/time/time.h" #include "third_party/blink/public/common/features.h" namespace content { std::optional<base::Time> GetSampleDebugReportStartingFrom() { … } base::Time CeilToNearestNextHour(base::TimeDelta delta) { … } bool IsInDebugReportLockout( const std::optional<base::Time>& last_report_sent_time, const base::Time now) { … } } // namespace content