Searched defs:HttpServerResponseInfo (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/server/
H A Dhttp_server_response_info.h16 class HttpServerResponseInfo { class in namespace:net
18 // Creates a 200 OK HttpServerResponseInfo.
19 HttpServerResponseInfo();
20 explicit HttpServerResponseInfo(HttpStatusCode status_code);
21 ~HttpServerResponseInfo();
23 static HttpServerResponseInfo CreateFor404();
24 static HttpServerResponseInfo CreateFor500(const std::string& body);
H A Dhttp_server_response_info.cc13 HttpServerResponseInfo::HttpServerResponseInfo() : status_code_(HTTP_OK) {} function in class:net::HttpServerResponseInfo
15 HttpServerResponseInfo::HttpServerResponseInfo(HttpStatusCode status_code) function in class:net::HttpServerResponseInfo
18 HttpServerResponseInfo::~HttpServerResponseInfo() {}
21 HttpServerResponseInfo HttpServerResponseInfo::CreateFor404() {
22 HttpServerResponseInfo response(HTTP_NOT_FOUND);
28 HttpServerResponseInfo HttpServerResponseInf
[all...]

Completed in 83 milliseconds