| Index: third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.h
|
| diff --git a/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.h b/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.h
|
| index ac97d4b2156e17fc360ba850d6b74dbf5f21a78d..192ec09c941f1ebf4b16f9f733ebeb3ea780124f 100644
|
| --- a/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.h
|
| +++ b/third_party/WebKit/Source/platform/scheduler/test/fake_web_task_runner.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <deque>
|
|
|
| +#include "base/callback.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "platform/WebTaskRunner.h"
|
| @@ -24,9 +25,7 @@ class FakeWebTaskRunner : public WebTaskRunner {
|
| void setTime(double new_time);
|
|
|
| // WebTaskRunner implementation:
|
| - void postDelayedTask(const WebTraceLocation&,
|
| - const base::Closure&,
|
| - double) override;
|
| + void postDelayedTask(const WebTraceLocation&, base::Closure, double) override;
|
| bool runsTasksOnCurrentThread() override;
|
| double virtualTimeSeconds() const override;
|
| double monotonicallyIncreasingVirtualTimeSeconds() const override;
|
|
|