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

Side by Side Diff: net/server/http_server_request_info.h

Issue 2870062: DevTools: implement basic handshake for remote debugging. (Closed)
Patch Set: utf16 conversion 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_SERVER_HTTP_SERVER_REQUEST_INFO_H_ 5 #ifndef NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_
6 #define NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_ 6 #define NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_
7 7
8 #include <string> 8 #include <string>
9 #include <map> 9 #include <map>
10 10
(...skipping 11 matching lines...) Expand all
22 std::string method; 22 std::string method;
23 23
24 // Request line. 24 // Request line.
25 std::string path; 25 std::string path;
26 26
27 // Request data. 27 // Request data.
28 std::string data; 28 std::string data;
29 29
30 // A map of the names -> values for HTTP headers. 30 // A map of the names -> values for HTTP headers.
31 typedef std::map<std::string, std::string> HeadersMap; 31 typedef std::map<std::string, std::string> HeadersMap;
32 HeadersMap headers; 32 mutable HeadersMap headers;
33 }; 33 };
34 34
35 #endif // NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_ 35 #endif // NET_SERVER_HTTP_SERVER_REQUEST_INFO_H_
OLDNEW
« chrome/browser/debugger/devtools_http_protocol_handler.cc ('K') | « net/server/http_listen_socket.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698