Fix Telemetry media seek action flakiness.
[chromium-blink-merge.git] / net / tools / fetch / http_server_request_info.h
blob9b0fae18d1692daed187e689e52881823cb68447
1 // Copyright (c) 2011 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_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_
6 #define NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_
8 #include <map>
9 #include <string>
11 #include "net/http/http_request_info.h"
13 // Meta information about an HTTP request.
14 // 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
16 // does).
17 class HttpServerRequestInfo : public net::HttpRequestInfo {
18 public:
19 HttpServerRequestInfo();
20 virtual ~HttpServerRequestInfo();
22 // A map of the names -> values for HTTP headers.
23 std::map<std::string, std::string> headers;
26 #endif // NET_BASE_TOOLS_HTTP_SERVER_REQUEST_INFO_H_