#include "components/metrics/test/test_metrics_provider.h"
#include "base/metrics/histogram_macros.h"
namespace metrics {
void TestMetricsProvider::Init() { … }
void TestMetricsProvider::OnRecordingDisabled() { … }
bool TestMetricsProvider::HasPreviousSessionData() { … }
void TestMetricsProvider::ProvidePreviousSessionData(
ChromeUserMetricsExtension* uma_proto) { … }
void TestMetricsProvider::ProvideCurrentSessionData(
ChromeUserMetricsExtension* uma_proto) { … }
void TestMetricsProvider::ProvideSystemProfileMetrics(
SystemProfileProto* system_profile_proto) { … }
void TestMetricsProvider::RecordInitialHistogramSnapshots(
base::HistogramSnapshotManager* snapshot_manager) { … }
void TestMetricsProvider::RecordHistogramSnapshots(
base::HistogramSnapshotManager* snapshot_manager) { … }
}