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

Unified Diff: Source/platform/scheduler/CancellableTaskFactory.h

Issue 1303153005: Introduce WebTaskRunner Patch 3/5 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add missing #include 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/scheduler/CancellableTaskFactory.h
diff --git a/Source/platform/scheduler/CancellableTaskFactory.h b/Source/platform/scheduler/CancellableTaskFactory.h
index a176b29a5c9e5fd9fb5aed0f5cae884ec728a1d6..2d1a642b309cc1e1a4842006e67dd875e3612195 100644
--- a/Source/platform/scheduler/CancellableTaskFactory.h
+++ b/Source/platform/scheduler/CancellableTaskFactory.h
@@ -40,7 +40,7 @@ public:
// Returns a task that can be disabled by calling cancel(). The user takes
// ownership of the task. Creating a new task cancels any previous ones.
- WebThread::Task* cancelAndCreate();
+ WebTaskRunner::Task* cancelAndCreate();
#if defined(ADDRESS_SANITIZER)
// The CancellableTaskFactory part object might be within a poisoned heap
@@ -52,7 +52,7 @@ public:
#endif
private:
- class CancellableTask : public WebThread::Task {
+ class CancellableTask : public WebTaskRunner::Task {
WTF_MAKE_NONCOPYABLE(CancellableTask);
public:
« no previous file with comments | « Source/platform/heap/glue/MessageLoopInterruptor.h ('k') | Source/platform/scheduler/CancellableTaskFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698