#ifndef V8_HANDLES_GLOBAL_HANDLES_H_
#define V8_HANDLES_GLOBAL_HANDLES_H_
#include <memory>
#include <type_traits>
#include <utility>
#include <vector>
#include "include/v8-callbacks.h"
#include "include/v8-persistent-handle.h"
#include "include/v8-profiler.h"
#include "src/handles/handles.h"
#include "src/heap/heap.h"
#include "src/objects/heap-object.h"
#include "src/objects/objects.h"
#include "src/utils/utils.h"
namespace v8 {
namespace internal {
class HeapStats;
class RootVisitor;
class V8_EXPORT_PRIVATE GlobalHandles final { … };
class GlobalHandles::PendingPhantomCallback final { … };
class EternalHandles final { … };
template <typename T>
class GlobalHandleVector { … };
}
}
#endif