| Index: components/scheduler/child/worker_scheduler.h
|
| diff --git a/components/scheduler/child/worker_scheduler.h b/components/scheduler/child/worker_scheduler.h
|
| deleted file mode 100644
|
| index 076b5385edd4c6515dda49c96ce719325c14c418..0000000000000000000000000000000000000000
|
| --- a/components/scheduler/child/worker_scheduler.h
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -// Copyright 2015 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.
|
| -
|
| -#ifndef COMPONENTS_SCHEDULER_CHILD_WORKER_SCHEDULER_H_
|
| -#define COMPONENTS_SCHEDULER_CHILD_WORKER_SCHEDULER_H_
|
| -
|
| -#include <memory>
|
| -
|
| -#include "base/macros.h"
|
| -#include "base/message_loop/message_loop.h"
|
| -#include "components/scheduler/child/child_scheduler.h"
|
| -#include "components/scheduler/child/single_thread_idle_task_runner.h"
|
| -#include "components/scheduler/scheduler_export.h"
|
| -
|
| -namespace base {
|
| -class MessageLoop;
|
| -}
|
| -
|
| -namespace scheduler {
|
| -class SchedulerTqmDelegate;
|
| -
|
| -class SCHEDULER_EXPORT WorkerScheduler : public ChildScheduler {
|
| - public:
|
| - ~WorkerScheduler() override;
|
| - static std::unique_ptr<WorkerScheduler> Create(
|
| - scoped_refptr<SchedulerTqmDelegate> main_task_runner);
|
| -
|
| - // Must be called before the scheduler can be used. Does any post construction
|
| - // initialization needed such as initializing idle period detection.
|
| - virtual void Init() = 0;
|
| -
|
| - protected:
|
| - WorkerScheduler();
|
| - DISALLOW_COPY_AND_ASSIGN(WorkerScheduler);
|
| -};
|
| -
|
| -} // namespace scheduler
|
| -
|
| -#endif // COMPONENTS_SCHEDULER_CHILD_WORKER_SCHEDULER_H_
|
|
|