|
@@ -8,6 +8,7 @@
|
|
|
#include <map>
|
|
|
|
|
|
#include "base/callback.h"
|
|
|
+#include "base/location.h"
|
|
|
#include "base/single_thread_task_runner.h"
|
|
|
#include "vendor/node/deps/uv/include/uv.h"
|
|
|
|
|
@@ -20,12 +21,12 @@ class UvTaskRunner : public base::SingleThreadTaskRunner {
|
|
|
~UvTaskRunner() override;
|
|
|
|
|
|
// base::SingleThreadTaskRunner:
|
|
|
- bool PostDelayedTask(const tracked_objects::Location& from_here,
|
|
|
+ bool PostDelayedTask(const base::Location& from_here,
|
|
|
base::OnceClosure task,
|
|
|
base::TimeDelta delay) override;
|
|
|
bool RunsTasksInCurrentSequence() const override;
|
|
|
bool PostNonNestableDelayedTask(
|
|
|
- const tracked_objects::Location& from_here,
|
|
|
+ const base::Location& from_here,
|
|
|
base::OnceClosure task,
|
|
|
base::TimeDelta delay) override;
|
|
|
|