blob: 96ec209d70b401876c0a8b64b48fa067c03ac04b [file] [log] [blame]
// Copyright 2020 PDFium 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 FXJS_GC_HEAP_H_
#define FXJS_GC_HEAP_H_
#include <memory>
#include "v8/include/cppgc/heap.h"
#include "v8/include/libplatform/libplatform.h"
struct FXGCHeapDeleter {
void operator()(cppgc::Heap* heap);
};
using FXGCScopedHeap = std::unique_ptr<cppgc::Heap, FXGCHeapDeleter>;
void FXGC_Initialize(v8::Platform* platform);
void FXGC_Release();
FXGCScopedHeap FXGC_CreateHeap();
#define CONSTRUCT_VIA_MAKE_GARBAGE_COLLECTED \
template <typename T> \
friend class cppgc::MakeGarbageCollectedTrait
#endif // FXJS_GC_HEAP_H_