| Index: net/server/http_server_response_info.cc
|
| diff --git a/net/server/http_server_response_info.cc b/net/server/http_server_response_info.cc
|
| index e4c6043aa8d627a76aed82eb08b774da55a91412..5b0fb225be6fe6b8813382b72f5e905bfa3d5b80 100644
|
| --- a/net/server/http_server_response_info.cc
|
| +++ b/net/server/http_server_response_info.cc
|
| @@ -10,12 +10,15 @@
|
|
|
| namespace net {
|
|
|
| -HttpServerResponseInfo::HttpServerResponseInfo() : status_code_(HTTP_OK) {}
|
| +HttpServerResponseInfo::HttpServerResponseInfo() : status_code_(HTTP_OK) {
|
| +}
|
|
|
| HttpServerResponseInfo::HttpServerResponseInfo(HttpStatusCode status_code)
|
| - : status_code_(status_code) {}
|
| + : status_code_(status_code) {
|
| +}
|
|
|
| -HttpServerResponseInfo::~HttpServerResponseInfo() {}
|
| +HttpServerResponseInfo::~HttpServerResponseInfo() {
|
| +}
|
|
|
| // static
|
| HttpServerResponseInfo HttpServerResponseInfo::CreateFor404() {
|
|
|