#ifndef ui_devtools_protocol_Page_h
#define ui_devtools_protocol_Page_h
#include "components/ui_devtools/devtools_export.h"
#include "components/ui_devtools/protocol.h"
#include "components/ui_devtools/dom.h"
namespace ui_devtools {
namespace protocol {
namespace Page {
ResourceType;
class Frame;
class FrameResource;
class FrameResourceTree;
namespace ResourceTypeEnum {
UI_DEVTOOLS_EXPORT extern const char Document[];
UI_DEVTOOLS_EXPORT extern const char Stylesheet[];
UI_DEVTOOLS_EXPORT extern const char Image[];
UI_DEVTOOLS_EXPORT extern const char Media[];
UI_DEVTOOLS_EXPORT extern const char Font[];
UI_DEVTOOLS_EXPORT extern const char Script[];
UI_DEVTOOLS_EXPORT extern const char TextTrack[];
UI_DEVTOOLS_EXPORT extern const char XHR[];
UI_DEVTOOLS_EXPORT extern const char Fetch[];
UI_DEVTOOLS_EXPORT extern const char EventSource[];
UI_DEVTOOLS_EXPORT extern const char WebSocket[];
UI_DEVTOOLS_EXPORT extern const char Manifest[];
UI_DEVTOOLS_EXPORT extern const char Other[];
}
class UI_DEVTOOLS_EXPORT Frame : public ::crdtp::ProtocolObject<Frame> { … };
class UI_DEVTOOLS_EXPORT FrameResource : public ::crdtp::ProtocolObject<FrameResource> { … };
class UI_DEVTOOLS_EXPORT FrameResourceTree : public ::crdtp::ProtocolObject<FrameResourceTree> { … };
class UI_DEVTOOLS_EXPORT Backend { … };
class UI_DEVTOOLS_EXPORT Frontend { … };
class UI_DEVTOOLS_EXPORT Dispatcher { … };
class UI_DEVTOOLS_EXPORT Metainfo { … };
}
}
}
#endif