Chromium Code Reviews| 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>); |