// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GIN_PUBLIC_V8_PLATFORM_H_ #define GIN_PUBLIC_V8_PLATFORM_H_ #include "base/compiler_specific.h" #include "base/lazy_instance.h" #include "gin/gin_export.h" #include "gin/time_clamper.h" #include "gin/v8_platform_page_allocator.h" #include "gin/v8_platform_thread_isolated_allocator.h" #include "partition_alloc/buildflags.h" #include "v8/include/v8-platform.h" namespace gin { // A v8::Platform implementation to use with gin. class GIN_EXPORT V8Platform : public v8::Platform { … }; } // namespace gin #endif // GIN_PUBLIC_V8_PLATFORM_H_