#ifndef content_protocol_Fetch_h
#define content_protocol_Fetch_h
#include "content/common/content_export.h"
#include "content/browser/devtools/protocol/protocol.h"
#include "content/browser/devtools/protocol/network.h"
#include "content/browser/devtools/protocol/io.h"
#include "content/browser/devtools/protocol/page.h"
namespace content {
namespace protocol {
namespace Fetch {
RequestId;
RequestStage;
class RequestPattern;
class HeaderEntry;
class AuthChallenge;
class AuthChallengeResponse;
namespace RequestStageEnum {
CONTENT_EXPORT extern const char Request[];
CONTENT_EXPORT extern const char Response[];
}
class CONTENT_EXPORT RequestPattern : public ::crdtp::ProtocolObject<RequestPattern> { … };
class CONTENT_EXPORT HeaderEntry : public ::crdtp::ProtocolObject<HeaderEntry> { … };
class CONTENT_EXPORT AuthChallenge : public ::crdtp::ProtocolObject<AuthChallenge> { … };
class CONTENT_EXPORT AuthChallengeResponse : public ::crdtp::ProtocolObject<AuthChallengeResponse> { … };
class CONTENT_EXPORT Backend { … };
class CONTENT_EXPORT Frontend { … };
class CONTENT_EXPORT Dispatcher { … };
class CONTENT_EXPORT Metainfo { … };
}
}
}
#endif