// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/backoff_timer.h" #include <memory> #include <utility> #include "base/functional/bind.h" namespace remoting { BackoffTimer::BackoffTimer() = default; BackoffTimer::~BackoffTimer() = default; void BackoffTimer::Start(const base::Location& posted_from, base::TimeDelta delay, base::TimeDelta max_delay, const base::RepeatingClosure& user_task) { … } void BackoffTimer::Stop() { … } void BackoffTimer::StartTimer() { … } void BackoffTimer::OnTimerFired() { … } } // namespace remoting