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

Unified Diff: mojo/services/html_viewer/webscheduler_impl.cc

Issue 959873003: Add WebScheduler implementation to HTMLViewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review nits 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/html_viewer/webscheduler_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/html_viewer/webscheduler_impl.cc
diff --git a/mojo/services/html_viewer/webscheduler_impl.cc b/mojo/services/html_viewer/webscheduler_impl.cc
new file mode 100644
index 0000000000000000000000000000000000000000..20442ea9671dd29edd103dde771c011e38793c81
--- /dev/null
+++ b/mojo/services/html_viewer/webscheduler_impl.cc
@@ -0,0 +1,58 @@
+// 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.
+
+// An implementation of WebThread in terms of base::MessageLoop and
+// base::Thread
+
+#include "base/bind.h"
+#include "base/message_loop/message_loop.h"
+#include "base/tracked_objects.h"
+#include "mojo/services/html_viewer/webscheduler_impl.h"
+
+namespace html_viewer {
+
+WebSchedulerImpl::WebSchedulerImpl(
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner)
+ : task_runner_(task_runner) {
+}
+
+WebSchedulerImpl::~WebSchedulerImpl() {
+}
+
+void WebSchedulerImpl::postIdleTask(const blink::WebTraceLocation& web_location,
+ blink::WebScheduler::IdleTask* task) {
+ scoped_ptr<blink::WebScheduler::IdleTask> scoped_task(task);
+ tracked_objects::Location location(web_location.functionName(),
+ web_location.fileName(), -1, nullptr);
+ task_runner_->PostTask(location, base::Bind(&WebSchedulerImpl::RunIdleTask,
+ base::Passed(&scoped_task)));
+}
+
+void WebSchedulerImpl::postLoadingTask(
+ const blink::WebTraceLocation& web_location,
+ blink::WebThread::Task* task) {
+ scoped_ptr<blink::WebThread::Task> scoped_task(task);
+ tracked_objects::Location location(web_location.functionName(),
+ web_location.fileName(), -1, nullptr);
+ task_runner_->PostTask(location, base::Bind(&WebSchedulerImpl::RunTask,
+ base::Passed(&scoped_task)));
+}
+
+void WebSchedulerImpl::shutdown() {
+ task_runner_ = nullptr;
+}
+
+// static
+void WebSchedulerImpl::RunIdleTask(
+ scoped_ptr<blink::WebScheduler::IdleTask> task) {
+ // TODO(davemoore) Implement idle scheduling.
+ task->run(0);
+}
+
+// static
+void WebSchedulerImpl::RunTask(scoped_ptr<blink::WebThread::Task> task) {
+ task->run();
+}
+
+} // namespace html_viewer
« no previous file with comments | « mojo/services/html_viewer/webscheduler_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698