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

Unified Diff: components/scheduler/ppapi/webthread_impl_for_ppapi.cc

Issue 1424053002: Adds a flag to support "Virtual Time" to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/scheduler/ppapi/webthread_impl_for_ppapi.h ('k') | components/scheduler/renderer/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/scheduler/ppapi/webthread_impl_for_ppapi.cc
diff --git a/components/scheduler/ppapi/webthread_impl_for_ppapi.cc b/components/scheduler/ppapi/webthread_impl_for_ppapi.cc
index 113efdc4da63340f63ac3730a15d1b930e138b15..d657fd3d8e7f0a3fedb24c373305a459d55cde94 100644
--- a/components/scheduler/ppapi/webthread_impl_for_ppapi.cc
+++ b/components/scheduler/ppapi/webthread_impl_for_ppapi.cc
@@ -7,8 +7,9 @@
#include "base/bind.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
+#include "base/time/default_tick_clock.h"
#include "components/scheduler/base/task_queue.h"
-#include "components/scheduler/child/scheduler_task_runner_delegate_impl.h"
+#include "components/scheduler/child/scheduler_tqm_delegate_impl.h"
#include "components/scheduler/child/web_scheduler_impl.h"
#include "components/scheduler/child/web_task_runner_impl.h"
#include "components/scheduler/child/worker_scheduler_impl.h"
@@ -17,8 +18,9 @@ namespace scheduler {
WebThreadImplForPPAPI::WebThreadImplForPPAPI()
: thread_id_(base::PlatformThread::CurrentId()),
- task_runner_delegate_(SchedulerTaskRunnerDelegateImpl::Create(
- base::MessageLoop::current())),
+ task_runner_delegate_(SchedulerTqmDelegateImpl::Create(
+ base::MessageLoop::current(),
+ make_scoped_ptr(new base::DefaultTickClock()))),
worker_scheduler_(WorkerScheduler::Create(task_runner_delegate_)) {
worker_scheduler_->Init();
task_runner_ = worker_scheduler_->DefaultTaskRunner();
« no previous file with comments | « components/scheduler/ppapi/webthread_impl_for_ppapi.h ('k') | components/scheduler/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698