// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_BASE_IDLE_IDLE_TIME_PROVIDER_H_ #define UI_BASE_IDLE_IDLE_TIME_PROVIDER_H_ #include "base/time/time.h" namespace ui { // Provides an interface for querying a user's idle time and screen state. class IdleTimeProvider { … }; } // namespace ui #endif // UI_BASE_IDLE_IDLE_TIME_PROVIDER_H_