// Copyright 2020 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_TEST_INSPECTOR_FRONTEND_CHANNEL_H_ #define V8_TEST_INSPECTOR_FRONTEND_CHANNEL_H_ #include <vector> #include "include/v8-context.h" #include "include/v8-function.h" #include "include/v8-inspector.h" #include "include/v8-microtask-queue.h" #include "include/v8-persistent-handle.h" #include "test/inspector/task-runner.h" #include "test/inspector/utils.h" namespace v8 { namespace internal { class FrontendChannelImpl : public v8_inspector::V8Inspector::Channel { … }; } // namespace internal } // namespace v8 #endif // V8_TEST_INSPECTOR_FRONTEND_CHANNEL_H_