// 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. #ifndef COMPONENTS_FEEDBACK_REDACTION_TOOL_INPROCESS_METRICS_TESTER_H_ #define COMPONENTS_FEEDBACK_REDACTION_TOOL_INPROCESS_METRICS_TESTER_H_ #include <string_view> #include "base/test/metrics/histogram_tester.h" #include "components/feedback/redaction_tool/metrics_tester.h" namespace redaction { // A class used for testing to retrieve bucket values for histograms. // This is the default implementation for the `MetricsTester` in Chromium. class InprocessMetricsTester : public MetricsTester { … }; } // namespace redaction #endif // COMPONENTS_FEEDBACK_REDACTION_TOOL_INPROCESS_METRICS_TESTER_H_