// 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 "components/component_updater/timer.h" #include "base/functional/bind.h" #include "base/location.h" namespace component_updater { Timer::Timer() = default; Timer::~Timer() { … } void Timer::Start(base::TimeDelta initial_delay, base::TimeDelta delay, const base::RepeatingClosure& user_task) { … } void Timer::Stop() { … } void Timer::OnDelay() { … } } // namespace component_updater