Index: content/child/scheduler/scheduler_message_loop_delegate.cc |
diff --git a/content/child/scheduler/scheduler_message_loop_delegate.cc b/content/child/scheduler/scheduler_message_loop_delegate.cc |
deleted file mode 100644 |
index 32fdc087baa7af29a480bab8f08cc842c6a2fbf7..0000000000000000000000000000000000000000 |
--- a/content/child/scheduler/scheduler_message_loop_delegate.cc |
+++ /dev/null |
@@ -1,46 +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. |
- |
-#include "content/child/scheduler/scheduler_message_loop_delegate.h" |
- |
-namespace content { |
- |
-// static |
-scoped_refptr<SchedulerMessageLoopDelegate> |
-SchedulerMessageLoopDelegate::Create(base::MessageLoop* message_loop) { |
- return make_scoped_refptr(new SchedulerMessageLoopDelegate(message_loop)); |
-} |
- |
-SchedulerMessageLoopDelegate::SchedulerMessageLoopDelegate( |
- base::MessageLoop* message_loop) |
- : message_loop_(message_loop) { |
-} |
- |
-SchedulerMessageLoopDelegate::~SchedulerMessageLoopDelegate() { |
-} |
- |
-bool SchedulerMessageLoopDelegate::PostDelayedTask( |
- const tracked_objects::Location& from_here, |
- const base::Closure& task, |
- base::TimeDelta delay) { |
- return message_loop_->task_runner()->PostDelayedTask(from_here, task, delay); |
-} |
- |
-bool SchedulerMessageLoopDelegate::PostNonNestableDelayedTask( |
- const tracked_objects::Location& from_here, |
- const base::Closure& task, |
- base::TimeDelta delay) { |
- return message_loop_->task_runner()->PostNonNestableDelayedTask(from_here, |
- task, delay); |
-} |
- |
-bool SchedulerMessageLoopDelegate::RunsTasksOnCurrentThread() const { |
- return message_loop_->task_runner()->RunsTasksOnCurrentThread(); |
-} |
- |
-bool SchedulerMessageLoopDelegate::IsNested() const { |
- return message_loop_->IsNested(); |
-} |
- |
-} // namespace content |