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

Unified Diff: public/platform/WebScheduler.h

Issue 1134523002: Implement timers by posting delayed tasks (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Gyp tweak. Created 5 years, 7 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
« Source/platform/Timer.cpp ('K') | « public/platform/Platform.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebScheduler.h
diff --git a/public/platform/WebScheduler.h b/public/platform/WebScheduler.h
index 2e3760e6902a52b3b73ab3869448a639e9f6c8c5..e74f5268aedc0bf7cf84acaeab371a0ce1d10a56 100644
--- a/public/platform/WebScheduler.h
+++ b/public/platform/WebScheduler.h
@@ -70,8 +70,8 @@ public:
#ifdef INSIDE_BLINK
// Helpers for posting bound functions as tasks.
- typedef Function<void(double deadlineSeconds)> IdleTask;
- typedef Function<void()> Task;
+ typedef WTF::Function<void(double deadlineSeconds)> IdleTask;
+ typedef WTF::Function<void()> Task;
kinuko 2015/05/13 08:26:39 nit: is this change related to this CL?
Sami 2015/05/13 18:01:26 Ah, we don't actually need to do this I think. Rem
void postIdleTask(const WebTraceLocation&, PassOwnPtr<IdleTask>);
void postNonNestableIdleTask(const WebTraceLocation&, PassOwnPtr<IdleTask>);
« Source/platform/Timer.cpp ('K') | « public/platform/Platform.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698