// Copyright 2022 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/ui/form_factor_metrics_provider.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/metrics_proto/system_profile.pb.h" namespace metrics { namespace { constexpr SystemProfileProto::Hardware::FormFactor kFormFactor = …; class TestFormFactorMetricsProvider : public FormFactorMetricsProvider { … }; } // namespace TEST(FormFactorMetricsProviderTest, ProvideSystemProfileMetrics) { … } } // namespace metrics