summaryrefslogtreecommitdiff
path: root/deps/v8/src/cancelable-task.cc
blob: 32d5057c49ead4149d9487e91a12cf8cdd304cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/cancelable-task.h"

#include "src/base/platform/platform.h"
#include "src/v8.h"

namespace v8 {
namespace internal {


Cancelable::Cancelable(Isolate* isolate)
    : isolate_(isolate), is_cancelled_(false) {
  isolate->RegisterCancelableTask(this);
}


Cancelable::~Cancelable() {
  if (!is_cancelled_) {
    isolate_->RemoveCancelableTask(this);
  }
}


}  // namespace internal
}  // namespace v8