| 127 | } |
| 128 | |
| 129 | void HttpResponse::AppendStartLineToString(std::string* result) const { |
| 130 | StringAppend(result, "HTTP/", Version().Major(), ".", Version().Major(), |
| 131 | " ", m_status, " ", StatusCodeToReasonPhraseSafe(m_status)); |
| 132 | } |
| 133 | |
| 134 | void HttpResponse::FillWithHtmlPage(StatusCode code, const StringPiece& title, |
| 135 | const StringPiece& body) |
nothing calls this directly
no test coverage detected