#ifndef ui_devtools_protocol_DOM_h
#define ui_devtools_protocol_DOM_h
#include "components/ui_devtools/devtools_export.h"
#include "components/ui_devtools/protocol.h"
namespace ui_devtools {
namespace protocol {
namespace DOM {
NodeId;
BackendNodeId;
class Node;
class RGBA;
class MouseEvent;
class KeyEvent;
class UI_DEVTOOLS_EXPORT Node : public ::crdtp::ProtocolObject<Node> { … };
class UI_DEVTOOLS_EXPORT RGBA : public ::crdtp::ProtocolObject<RGBA> { … };
class UI_DEVTOOLS_EXPORT MouseEvent : public ::crdtp::ProtocolObject<MouseEvent> { … };
class UI_DEVTOOLS_EXPORT KeyEvent : public ::crdtp::ProtocolObject<KeyEvent> { … };
class UI_DEVTOOLS_EXPORT Backend { … };
class UI_DEVTOOLS_EXPORT Frontend { … };
class UI_DEVTOOLS_EXPORT Dispatcher { … };
class UI_DEVTOOLS_EXPORT Metainfo { … };
}
}
}
#endif