53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
|
|
// Copyright 2015 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/metrics/test/test_metrics_provider.h"
|
||
|
|
|
||
|
|
#include "base/metrics/histogram_macros.h"
|
||
|
|
|
||
|
|
namespace metrics {
|
||
|
|
|
||
|
|
void TestMetricsProvider::Init() {
|
||
|
|
init_called_ = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
void TestMetricsProvider::OnRecordingDisabled() {
|
||
|
|
on_recording_disabled_called_ = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool TestMetricsProvider::HasPreviousSessionData() {
|
||
|
|
has_initial_stability_metrics_called_ = true;
|
||
|
|
return has_initial_stability_metrics_;
|
||
|
|
}
|
||
|
|
|
||
|
|
void TestMetricsProvider::ProvidePreviousSessionData(
|
||
|
|
ChromeUserMetricsExtension* uma_proto) {
|
||
|
|
UMA_STABILITY_HISTOGRAM_ENUMERATION("TestMetricsProvider.Initial", 1, 2);
|
||
|
|
provide_initial_stability_metrics_called_ = true;
|
||
|
|
ProvideCurrentSessionData(nullptr);
|
||
|
|
}
|
||
|
|
|
||
|
|
void TestMetricsProvider::ProvideCurrentSessionData(
|
||
|
|
ChromeUserMetricsExtension* uma_proto) {
|
||
|
|
UMA_STABILITY_HISTOGRAM_ENUMERATION("TestMetricsProvider.Regular", 1, 2);
|
||
|
|
provide_stability_metrics_called_ = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
void TestMetricsProvider::ProvideSystemProfileMetrics(
|
||
|
|
SystemProfileProto* system_profile_proto) {
|
||
|
|
provide_system_profile_metrics_called_ = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
void TestMetricsProvider::RecordInitialHistogramSnapshots(
|
||
|
|
base::HistogramSnapshotManager* snapshot_manager) {
|
||
|
|
record_initial_histogram_snapshots_called_ = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
void TestMetricsProvider::RecordHistogramSnapshots(
|
||
|
|
base::HistogramSnapshotManager* snapshot_manager) {
|
||
|
|
record_histogram_snapshots_called_ = true;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace metrics
|