// Copyright 2018 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_DOWNLOAD_PUBLIC_TASK_EMPTY_TASK_SCHEDULER_H_ #define COMPONENTS_DOWNLOAD_PUBLIC_TASK_EMPTY_TASK_SCHEDULER_H_ #include <stdint.h> #include "components/download/public/task/task_scheduler.h" namespace download { // Task scheduler that does nothing for incognito mode. class EmptyTaskScheduler : public TaskScheduler { … }; } // namespace download #endif // COMPONENTS_DOWNLOAD_PUBLIC_TASK_EMPTY_TASK_SCHEDULER_H_