// 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_VARIATIONS_VARIATIONS_REQUEST_SCHEDULER_H_ #define COMPONENTS_VARIATIONS_VARIATIONS_REQUEST_SCHEDULER_H_ #include "base/component_export.h" #include "base/functional/bind.h" #include "base/gtest_prod_util.h" #include "base/time/time.h" #include "base/timer/timer.h" class PrefService; namespace variations { // A helper class that makes VariationsService requests at the correct times. class COMPONENT_EXPORT(VARIATIONS) VariationsRequestScheduler { … }; } // namespace variations #endif // COMPONENTS_VARIATIONS_VARIATIONS_REQUEST_SCHEDULER_H_