// Copyright 2018 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/cpu_metrics_provider.h" #include "base/cpu.h" #include "base/system/sys_info.h" #include "third_party/metrics_proto/system_profile.pb.h" namespace metrics { CPUMetricsProvider::CPUMetricsProvider() { … } CPUMetricsProvider::~CPUMetricsProvider() { … } void CPUMetricsProvider::ProvideSystemProfileMetrics( SystemProfileProto* system_profile) { … } } // namespace metrics