Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SPDY_SPDY_HTTP_UTILS_H_ | 5 #ifndef NET_SPDY_SPDY_HTTP_UTILS_H_ |
| 6 #define NET_SPDY_SPDY_HTTP_UTILS_H_ | 6 #define NET_SPDY_SPDY_HTTP_UTILS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "googleurl/src/gurl.h" | |
| 9 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
| 10 #include "net/base/request_priority.h" | 11 #include "net/base/request_priority.h" |
| 11 #include "net/spdy/spdy_framer.h" | 12 #include "net/spdy/spdy_framer.h" |
| 12 | 13 |
| 13 namespace net { | 14 namespace net { |
| 14 | 15 |
| 15 class HttpResponseInfo; | 16 class HttpResponseInfo; |
| 16 struct HttpRequestInfo; | 17 struct HttpRequestInfo; |
| 17 class HttpRequestHeaders; | 18 class HttpRequestHeaders; |
| 18 | 19 |
| 19 // Convert a SpdyHeaderBlock into an HttpResponseInfo. | 20 // Convert a SpdyHeaderBlock into an HttpResponseInfo. |
| 20 // |headers| input parameter with the SpdyHeaderBlock. | 21 // |headers| input parameter with the SpdyHeaderBlock. |
| 21 // |info| output parameter for the HttpResponseInfo. | 22 // |info| output parameter for the HttpResponseInfo. |
|
ramant (doing other things)
2012/03/30 22:19:58
nit: please fix |info| to |response|. thanks.
Ryan Hamilton
2012/03/30 22:46:02
Done.
| |
| 22 // Returns true if successfully converted. False if the SpdyHeaderBlock is | 23 // Returns true if successfully converted. False if the SpdyHeaderBlock is |
| 23 // incomplete (e.g. missing 'status' or 'version'). | 24 // incomplete (e.g. missing 'status' or 'version'). |
| 24 bool SpdyHeadersToHttpResponse(const SpdyHeaderBlock& headers, | 25 bool SpdyHeadersToHttpResponse(const SpdyHeaderBlock& headers, |
| 26 int protocol_version, | |
| 25 HttpResponseInfo* response); | 27 HttpResponseInfo* response); |
| 26 | 28 |
| 27 // Create a SpdyHeaderBlock for a Spdy SYN_STREAM Frame from | 29 // Create a SpdyHeaderBlock for a Spdy SYN_STREAM Frame from |
| 28 // HttpRequestInfo and HttpRequestHeaders. | 30 // HttpRequestInfo and HttpRequestHeaders. |
| 29 void CreateSpdyHeadersFromHttpRequest(const HttpRequestInfo& info, | 31 void CreateSpdyHeadersFromHttpRequest(const HttpRequestInfo& info, |
| 30 const HttpRequestHeaders& request_headers, | 32 const HttpRequestHeaders& request_headers, |
| 31 SpdyHeaderBlock* headers, | 33 SpdyHeaderBlock* headers, |
| 32 int protocol_version, | 34 int protocol_version, |
| 33 bool direct); | 35 bool direct); |
| 34 | 36 |
| 37 GURL GetUrlFromHeaderBlock(const SpdyHeaderBlock& headers, | |
|
ramant (doing other things)
2012/03/30 22:19:58
nit: Would be great if we could have a comment for
Ryan Hamilton
2012/03/30 22:46:02
Done.
| |
| 38 int protocol_version, | |
| 39 bool pushed); | |
| 40 | |
| 35 NET_EXPORT_PRIVATE int ConvertRequestPriorityToSpdyPriority( | 41 NET_EXPORT_PRIVATE int ConvertRequestPriorityToSpdyPriority( |
| 36 RequestPriority priority); | 42 RequestPriority priority); |
| 37 | 43 |
| 38 } // namespace net | 44 } // namespace net |
| 39 | 45 |
| 40 #endif // NET_SPDY_SPDY_HTTP_UTILS_H_ | 46 #endif // NET_SPDY_SPDY_HTTP_UTILS_H_ |
| OLD | NEW |