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

Side by Side Diff: content/renderer/scheduler/null_renderer_scheduler.cc

Issue 922733002: scheduler: Implement task observers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments. Created 5 years, 10 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/scheduler/null_renderer_scheduler.h" 5 #include "content/renderer/scheduler/null_renderer_scheduler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop_proxy.h" 8 #include "base/message_loop/message_loop_proxy.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 return false; 82 return false;
83 } 83 }
84 84
85 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() { 85 bool NullRendererScheduler::ShouldYieldForHighPriorityWork() {
86 return false; 86 return false;
87 } 87 }
88 88
89 void NullRendererScheduler::Shutdown() { 89 void NullRendererScheduler::Shutdown() {
90 } 90 }
91 91
92 void NullRendererScheduler::AddTaskObserver(
93 base::MessageLoop::TaskObserver* task_observer) {
94 base::MessageLoop::current()->AddTaskObserver(task_observer);
95 }
96
97 void NullRendererScheduler::RemoveTaskObserver(
98 base::MessageLoop::TaskObserver* task_observer) {
99 base::MessageLoop::current()->RemoveTaskObserver(task_observer);
rmcilroy 2015/02/13 12:53:21 nit - move above shutdown
Sami 2015/02/13 14:27:26 Done.
100 }
101
92 } // namespace content 102 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698