chromium/content/browser/background_sync/background_sync_op_scheduler.cc

// Copyright 2021 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/browser/background_sync/background_sync_op_scheduler.h"

#include <string>

#include "base/check_op.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/location.h"
#include "base/metrics/field_trial_params.h"
#include "base/metrics/histogram_macros.h"
#include "base/task/sequenced_task_runner.h"
#include "build/build_config.h"

namespace content {

class BackgroundSyncOpScheduler::Operation {};

BackgroundSyncOpScheduler::BackgroundSyncOpScheduler(
    scoped_refptr<base::SequencedTaskRunner> task_runner)
    :{}

BackgroundSyncOpScheduler::~BackgroundSyncOpScheduler() {}

void BackgroundSyncOpScheduler::ScheduleOperation(base::OnceClosure closure) {}

void BackgroundSyncOpScheduler::CompleteOperationAndRunNext() {}

bool BackgroundSyncOpScheduler::ScheduledOperations() const {}

void BackgroundSyncOpScheduler::MaybeRunOperation() {}

}  // namespace content