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

Side by Side Diff: components/scheduler/renderer/renderer_scheduler.h

Issue 1646583002: [Reland] Per WebViewScheduler virtual time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 4 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 #ifndef COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ 5 #ifndef COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_
6 #define COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ 6 #define COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/message_loop/message_loop.h" 9 #include "base/message_loop/message_loop.h"
10 #include "components/scheduler/child/child_scheduler.h" 10 #include "components/scheduler/child/child_scheduler.h"
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 virtual void SuspendTimerQueue() = 0; 144 virtual void SuspendTimerQueue() = 0;
145 145
146 // Decrements the timer queue suspension count and re-enables the timer queue 146 // Decrements the timer queue suspension count and re-enables the timer queue
147 // if the suspension count is zero and the current schduler policy allows it. 147 // if the suspension count is zero and the current schduler policy allows it.
148 virtual void ResumeTimerQueue() = 0; 148 virtual void ResumeTimerQueue() = 0;
149 149
150 // Sets whether to allow suspension of timers after the backgrounded signal is 150 // Sets whether to allow suspension of timers after the backgrounded signal is
151 // received via OnRendererBackgrounded. Defaults to disabled. 151 // received via OnRendererBackgrounded. Defaults to disabled.
152 virtual void SetTimerQueueSuspensionWhenBackgroundedEnabled(bool enabled) = 0; 152 virtual void SetTimerQueueSuspensionWhenBackgroundedEnabled(bool enabled) = 0;
153 153
154 // Returns a double which is the number of seconds since epoch (Jan 1, 1970).
155 // This may represent either the real time, or a virtual time depending on
156 // whether or not the system is currently running a task associated with a
157 // virtual time domain or real time domain.
158 virtual double VirtualTimeSeconds() const = 0;
159
160 // Returns a microsecond resolution platform dependant time source.
161 // This may represent either the real time, or a virtual time depending on
162 // whether or not the system is currently running a task associated with a
163 // virtual time domain or real time domain.
164 virtual double MonotonicallyIncreasingVirtualTimeSeconds() const = 0;
165
166 protected: 154 protected:
167 RendererScheduler(); 155 RendererScheduler();
168 DISALLOW_COPY_AND_ASSIGN(RendererScheduler); 156 DISALLOW_COPY_AND_ASSIGN(RendererScheduler);
169 }; 157 };
170 158
171 } // namespace scheduler 159 } // namespace scheduler
172 160
173 #endif // COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_ 161 #endif // COMPONENTS_SCHEDULER_RENDERER_RENDERER_SCHEDULER_H_
OLDNEW
« no previous file with comments | « components/scheduler/child/web_task_runner_impl.cc ('k') | components/scheduler/renderer/renderer_scheduler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698