#include "content/public/browser/background_sync_parameters.h"
#include "build/build_config.h"
namespace content {
namespace {
const int kMaxSyncAttempts = …;
const int kRetryDelayFactor = …;
constexpr base::TimeDelta kInitialRetryDelay = …;
constexpr base::TimeDelta kMaxSyncEventDuration = …;
constexpr base::TimeDelta kMinSyncRecoveryTime = …;
constexpr base::TimeDelta kMinPeriodicSyncEventsInterval = …;
}
BackgroundSyncParameters::BackgroundSyncParameters()
: … { … }
BackgroundSyncParameters::BackgroundSyncParameters(
const BackgroundSyncParameters& other) = default;
BackgroundSyncParameters& BackgroundSyncParameters::operator=(
const BackgroundSyncParameters& other) = default;
bool BackgroundSyncParameters::operator==(
const BackgroundSyncParameters& other) const { … }
}