// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/power_monitor/power_monitor_device_source.h" #if BUILDFLAG(IS_ANDROID) #include <android/api-level.h> #endif #include "base/logging.h" #include "base/power_monitor/power_monitor.h" #include "base/power_monitor/power_monitor_source.h" #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" DeviceThermalState; namespace base { class PowerMonitorDeviceSourceTest : public testing::Test { … }; TEST_F(PowerMonitorDeviceSourceTest, GetCurrentThermalState) { … } } // namespace base