chromium/components/input/timeout_monitor.h

// Copyright 2013 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_INPUT_TIMEOUT_MONITOR_H_
#define COMPONENTS_INPUT_TIMEOUT_MONITOR_H_

#include "base/functional/callback.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "base/component_export.h"

namespace input {

// Utility class for handling a timeout callback with periodic starts and stops.
class COMPONENT_EXPORT(INPUT) TimeoutMonitor {};

}  // namespace input

#endif  // COMPONENTS_INPUT_TIMEOUT_MONITOR_H_