chromium/v8/src/heap/gc-callbacks.h

// Copyright 2020 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.

#ifndef V8_HEAP_GC_CALLBACKS_H_
#define V8_HEAP_GC_CALLBACKS_H_

#include <algorithm>
#include <tuple>
#include <vector>

#include "include/v8-callbacks.h"
#include "src/base/logging.h"
#include "src/common/assert-scope.h"

namespace v8::internal {

class GCCallbacks final {};

class GCCallbacksInSafepoint final {};

}  // namespace v8::internal

#endif  // V8_HEAP_GC_CALLBACKS_H_