// Copyright 2019 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_SNAPSHOT_EMBEDDED_PLATFORM_EMBEDDED_FILE_WRITER_GENERIC_H_ #define V8_SNAPSHOT_EMBEDDED_PLATFORM_EMBEDDED_FILE_WRITER_GENERIC_H_ #include "src/common/globals.h" // For V8_OS_WIN_X64 #include "src/snapshot/embedded/platform-embedded-file-writer-base.h" namespace v8 { namespace internal { class PlatformEmbeddedFileWriterGeneric : public PlatformEmbeddedFileWriterBase { … }; } // namespace internal } // namespace v8 #endif // V8_SNAPSHOT_EMBEDDED_PLATFORM_EMBEDDED_FILE_WRITER_GENERIC_H_