blob: 445d62299bce1d751c17768771235a258ec6e489 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/download/internal/background_service/empty_task_scheduler.h"
namespace download {
EmptyTaskScheduler::EmptyTaskScheduler() = default;
EmptyTaskScheduler::~EmptyTaskScheduler() = default;
void EmptyTaskScheduler::ScheduleTask(DownloadTaskType task_type,
bool require_unmetered_network,
bool require_charging,
int optimal_battery_percentage,
int64_t window_start_time_seconds,
int64_t window_end_time_seconds) {}
void EmptyTaskScheduler::CancelTask(DownloadTaskType task_type) {}
} // namespace download