// 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. #ifndef COMPONENTS_METRICS_DRIVE_METRICS_PROVIDER_H_ #define COMPONENTS_METRICS_DRIVE_METRICS_PROVIDER_H_ #include "base/functional/callback_forward.h" #include "base/gtest_prod_util.h" #include "base/memory/weak_ptr.h" #include "base/sequence_checker.h" #include "components/metrics/metrics_provider.h" #include "third_party/metrics_proto/system_profile.pb.h" namespace base { class FilePath; } namespace metrics { // Provides metrics about the local drives on a user's computer. Currently only // checks to see if they incur a seek-time penalty (e.g. if they're SSDs). class DriveMetricsProvider : public metrics::MetricsProvider { … }; } // namespace metrics #endif // COMPONENTS_METRICS_DRIVE_METRICS_PROVIDER_H_