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

Unified Diff: components/scheduler/child/webthread_base.h

Issue 1309423004: Introduce WebTaskRunner Patch 4/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Try and fix compile Created 5 years, 3 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 | « components/scheduler/child/web_scheduler_impl.cc ('k') | components/scheduler/child/webthread_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/scheduler/child/webthread_base.h
diff --git a/components/scheduler/child/webthread_base.h b/components/scheduler/child/webthread_base.h
index adc92771681e5d175fdd3861ab83b7e5d65adac5..02598e17281f5c068fbaff06767d25636e1e3b1e 100644
--- a/components/scheduler/child/webthread_base.h
+++ b/components/scheduler/child/webthread_base.h
@@ -27,10 +27,6 @@ class SCHEDULER_EXPORT WebThreadBase : public blink::WebThread {
virtual bool isCurrentThread() const;
virtual blink::PlatformThreadId threadId() const = 0;
- virtual void postTask(const blink::WebTraceLocation& location, Task* task);
- virtual void postDelayedTask(const blink::WebTraceLocation& location,
- Task* task,
- long long delay_ms);
virtual void postIdleTask(const blink::WebTraceLocation& location,
IdleTask* idle_task);
virtual void postIdleTaskAfterWakeup(const blink::WebTraceLocation& location,
@@ -57,7 +53,6 @@ class SCHEDULER_EXPORT WebThreadBase : public blink::WebThread {
virtual void RemoveTaskObserverInternal(
base::MessageLoop::TaskObserver* observer);
- static void RunWebThreadTask(scoped_ptr<blink::WebThread::Task> task);
static void RunWebThreadIdleTask(
scoped_ptr<blink::WebThread::IdleTask> idle_task,
base::TimeTicks deadline);
« no previous file with comments | « components/scheduler/child/web_scheduler_impl.cc ('k') | components/scheduler/child/webthread_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698