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

Unified Diff: Source/platform/Task.h

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
Index: Source/platform/Task.h
diff --git a/Source/platform/Task.h b/Source/platform/Task.h
index 2a94b526ebb480a59ed1ec07723f7f0c6487c35a..322fde5d247a45382fb2f13ebd1a909a35354d9d 100644
--- a/Source/platform/Task.h
+++ b/Source/platform/Task.h
@@ -31,14 +31,14 @@
#ifndef Task_h
#define Task_h
-#include "public/platform/WebThread.h"
+#include "public/platform/WebTaskRunner.h"
#include "wtf/Functional.h"
#include "wtf/OwnPtr.h"
#include "wtf/PassOwnPtr.h"
namespace blink {
-class Task : public WebThread::Task {
+class Task : public WebTaskRunner::Task {
public:
explicit Task(PassOwnPtr<Closure> closure)
: m_closure(closure)

Powered by Google App Engine
This is Rietveld 408576698