Lines Matching defs:Cancelable
19 class Cancelable;
50 Id Register(Cancelable* task);
74 // Only called by {Cancelable} destructor. The task is done with executing,
82 std::unordered_map<Id, Cancelable*> cancelable_tasks_;
91 friend class Cancelable;
94 class V8_EXPORT_PRIVATE Cancelable {
96 explicit Cancelable(CancelableTaskManager* parent)
99 virtual ~Cancelable();
100 Cancelable(const Cancelable&) = delete;
101 Cancelable& operator=(const Cancelable&) = delete;
104 // that {Cancelable} is used in combination with {v8::Task} and handed to
145 class V8_EXPORT_PRIVATE CancelableTask : public Cancelable,
164 class CancelableIdleTask : public Cancelable, public IdleTask {