Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Side by Side Diff: net/tools/fetch/http_server_request_info.h

Issue 2982009: Revert everything related to the relanding. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/tools/fetch/http_listen_socket.cc ('k') | net/url_request/url_request.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_ 5 #ifndef NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_
6 #define NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_ 6 #define NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_
7 7
8 #include <map>
9 #include <string> 8 #include <string>
10 9
11 #include "net/http/http_request_info.h" 10 #include "net/http/http_request_info.h"
12 11
13 // Meta information about an HTTP request. 12 // Meta information about an HTTP request.
14 // This is geared toward servers in that it keeps a map of the headers and 13 // This is geared toward servers in that it keeps a map of the headers and
15 // values rather than just a list of header strings (which net::HttpRequestInfo 14 // values rather than just a list of header strings (which net::HttpRequestInfo
16 // does). 15 // does).
17 class HttpServerRequestInfo : public net::HttpRequestInfo { 16 class HttpServerRequestInfo : public net::HttpRequestInfo {
18 public: 17 public:
19 HttpServerRequestInfo() : net::HttpRequestInfo() {} 18 HttpServerRequestInfo() : net::HttpRequestInfo() {}
20 19
21 // A map of the names -> values for HTTP headers. 20 // A map of the names -> values for HTTP headers.
22 std::map<std::string, std::string> headers; 21 std::map<std::string, std::string> headers;
23 }; 22 };
24 23
25 #endif // NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_ 24 #endif // NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_
OLDNEW
« no previous file with comments | « net/tools/fetch/http_listen_socket.cc ('k') | net/url_request/url_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698