chromium/content/public/browser/background_sync_parameters.cc

// 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 "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 {}

}  // namespace content