chromium/components/metrics/test/test_metrics_provider.cc

// 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() {}

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) {}

}  // namespace metrics