// Copyright 2014 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/content/gpu_metrics_provider.h" #include "content/public/browser/gpu_data_manager.h" #include "gpu/config/gpu_info.h" #include "third_party/metrics_proto/system_profile.pb.h" namespace metrics { GPUMetricsProvider::GPUMetricsProvider() { … } GPUMetricsProvider::~GPUMetricsProvider() { … } void GPUMetricsProvider::ProvideSystemProfileMetrics( SystemProfileProto* system_profile_proto) { … } } // namespace metrics