// 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. #ifndef BASE_TEST_POWER_MONITOR_TEST_UTILS_H_ #define BASE_TEST_POWER_MONITOR_TEST_UTILS_H_ #include <optional> #include "base/functional/callback.h" #include "base/power_monitor/battery_level_provider.h" #include "base/power_monitor/sampling_event_source.h" namespace base::test { class TestSamplingEventSource : public SamplingEventSource { … }; class TestBatteryLevelProvider : public base::BatteryLevelProvider { … }; } // namespace base::test #endif // BASE_TEST_POWER_MONITOR_TEST_UTILS_H_