// Copyright 2012 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_SYNC_ENGINE_BACKOFF_DELAY_PROVIDER_H_ #define COMPONENTS_SYNC_ENGINE_BACKOFF_DELAY_PROVIDER_H_ #include <memory> #include "base/time/time.h" namespace syncer { struct ModelNeutralState; // A component used to get time delays associated with exponential backoff. class BackoffDelayProvider { … }; } // namespace syncer #endif // COMPONENTS_SYNC_ENGINE_BACKOFF_DELAY_PROVIDER_H_