1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_SERVER_HTTP_SERVER_RESPONSE_INFO_H_
6 #define NET_SERVER_HTTP_SERVER_RESPONSE_INFO_H_
12 #include "net/http/http_status_code.h"
16 class HttpServerResponseInfo
{
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
);
26 void AddHeader(const std::string
& name
, const std::string
& value
);
28 // This also adds an appropriate Content-Length header.
29 void SetBody(const std::string
& body
, const std::string
& content_type
);
31 std::string
Serialize() const;
33 HttpStatusCode
status_code() const;
34 const std::string
& body() const;
37 typedef std::vector
<std::pair
<std::string
, std::string
> > Headers
;
39 HttpStatusCode status_code_
;
46 #endif // NET_SERVER_HTTP_SERVER_RESPONSE_INFO_H_