Chromium Code Reviews| Index: net/server/http_server_response_info.h |
| diff --git a/net/server/http_server_response_info.h b/net/server/http_server_response_info.h |
| index bbb76d8836d291130343c3c467680b304b2d2023..9525bccfaee9a8d2ed5c14698d0bfeca95102754 100644 |
| --- a/net/server/http_server_response_info.h |
| +++ b/net/server/http_server_response_info.h |
| @@ -7,8 +7,8 @@ |
| #include <string> |
| #include <utility> |
| -#include <vector> |
| +#include "base/strings/string_split.h" |
| #include "net/http/http_status_code.h" |
| namespace net { |
| @@ -37,7 +37,7 @@ class HttpServerResponseInfo { |
| const std::string& body() const; |
| private: |
| - typedef std::vector<std::pair<std::string, std::string> > Headers; |
| + typedef base::StringPairs Headers; |
|
eroman
2015/04/27 21:39:08
the new style as I understand is to use "using" ra
|
| HttpStatusCode status_code_; |
| Headers headers_; |