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

Unified Diff: content/child/webthread_impl.cc

Issue 690703002: WebThreadImplForMessageLoop to use blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding a null check for Sami Created 6 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 | « content/child/webthread_impl.h ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webthread_impl.cc
diff --git a/content/child/webthread_impl.cc b/content/child/webthread_impl.cc
index ec80b70e86e2c885ce8522121bf2403a9504ac77..d29b36cb9878c3a15f4265e9c52182da17778eb8 100644
--- a/content/child/webthread_impl.cc
+++ b/content/child/webthread_impl.cc
@@ -97,18 +97,18 @@ WebThreadImpl::~WebThreadImpl() {
}
WebThreadImplForMessageLoop::WebThreadImplForMessageLoop(
- base::MessageLoopProxy* message_loop)
- : message_loop_(message_loop),
+ scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner)
+ : main_thread_task_runner_(main_thread_task_runner),
thread_id_(base::PlatformThread::CurrentId()) {}
void WebThreadImplForMessageLoop::postTask(Task* task) {
- message_loop_->PostTask(
+ main_thread_task_runner_->PostTask(
FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
}
void WebThreadImplForMessageLoop::postDelayedTask(Task* task,
long long delay_ms) {
- message_loop_->PostDelayedTask(
+ main_thread_task_runner_->PostDelayedTask(
FROM_HERE,
base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
base::TimeDelta::FromMilliseconds(delay_ms));
@@ -128,7 +128,7 @@ void WebThreadImplForMessageLoop::exitRunLoop() {
}
bool WebThreadImplForMessageLoop::isCurrentThread() const {
- return message_loop_->BelongsToCurrentThread();
+ return main_thread_task_runner_->BelongsToCurrentThread();
}
blink::PlatformThreadId WebThreadImplForMessageLoop::threadId() const {
« no previous file with comments | « content/child/webthread_impl.h ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698