// Copyright 2023 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/policy/core/browser/webui/statistics_collector.h" #include "base/metrics/histogram_functions.h" #include "build/build_config.h" namespace policy { namespace { constexpr int kMetricsCountMin = …; constexpr int kMetricsCountMax = …; constexpr int kMetricsBucket = …; } // namespace void RecordPolicyUIButtonUsage(uint32_t reload_policies_count, uint32_t export_to_json_count, uint32_t copy_to_json_count, uint32_t upload_report_count) { … } } // namespace policy