// Copyright 2022 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_SANDBOX_TESTING_H_ #define V8_SANDBOX_TESTING_H_ #include <unordered_map> #include "src/common/globals.h" #include "src/objects/instance-type.h" namespace v8 { namespace internal { #ifdef V8_ENABLE_SANDBOX // Infrastructure for testing the security properties of the sandbox. class SandboxTesting : public AllStatic { … }; #endif // V8_ENABLE_SANDBOX } // namespace internal } // namespace v8 #endif // V8_SANDBOX_TESTING_H_