Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: content/child/scheduler/null_idle_task_runner.cc

Issue 1058873010: Move blink scheduler implementation into a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/child/scheduler/null_idle_task_runner.h"
6
7 namespace content {
8
9 NullIdleTaskRunner::NullIdleTaskRunner()
10 : SingleThreadIdleTaskRunner(nullptr,
11 nullptr,
12 base::Callback<void(base::TimeTicks*)>(),
13 "null.taskrunner") {
14 }
15
16 NullIdleTaskRunner::~NullIdleTaskRunner() {
17 }
18
19 void NullIdleTaskRunner::PostIdleTask(
20 const tracked_objects::Location& from_here,
21 const IdleTask& idle_task) {
22 }
23
24 void NullIdleTaskRunner::PostNonNestableIdleTask(
25 const tracked_objects::Location& from_here,
26 const IdleTask& idle_task) {
27 }
28
29 void NullIdleTaskRunner::PostIdleTaskAfterWakeup(
30 const tracked_objects::Location& from_here,
31 const IdleTask& idle_task) {
32 }
33
34 } // namespace content
OLDNEW
« no previous file with comments | « content/child/scheduler/null_idle_task_runner.h ('k') | content/child/scheduler/null_worker_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698