// Copyright 2015 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_REMOTE_OBJECT_ID_H_ #define V8_INSPECTOR_REMOTE_OBJECT_ID_H_ #include <memory> #include "src/inspector/protocol/Forward.h" namespace v8_inspector { Response; class RemoteObjectIdBase { … }; class RemoteObjectId final : public RemoteObjectIdBase { … }; class RemoteCallFrameId final : public RemoteObjectIdBase { … }; } // namespace v8_inspector #endif // V8_INSPECTOR_REMOTE_OBJECT_ID_H_