// 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_INSPECTOR_V8_WEBDRIVER_SERIALIZER_H_ #define V8_INSPECTOR_V8_WEBDRIVER_SERIALIZER_H_ #include "include/v8-container.h" #include "include/v8-context.h" #include "include/v8-exception.h" #include "include/v8-regexp.h" #include "src/inspector/protocol/Runtime.h" #include "src/inspector/v8-value-utils.h" namespace v8_inspector { class V8WebDriverSerializer { public: static protocol::Response serializeV8Value( v8::Local value, v8::Local context, int max_depth, std::unique_ptr* result); }; } // namespace v8_inspector #endif // V8_INSPECTOR_V8_WEBDRIVER_SERIALIZER_H_