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

Unified Diff: net/spdy/spdy_http_utils.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_http_stream_unittest.cc ('k') | net/spdy/spdy_http_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_http_utils.h
diff --git a/net/spdy/spdy_http_utils.h b/net/spdy/spdy_http_utils.h
deleted file mode 100644
index a5c907b2afac71587a5c1e602664ae7a04c387a7..0000000000000000000000000000000000000000
--- a/net/spdy/spdy_http_utils.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_SPDY_SPDY_HTTP_UTILS_H_
-#define NET_SPDY_SPDY_HTTP_UTILS_H_
-
-#include "net/base/net_export.h"
-#include "net/base/request_priority.h"
-#include "net/spdy/spdy_framer.h"
-#include "net/spdy/spdy_header_block.h"
-#include "net/spdy/spdy_protocol.h"
-#include "url/gurl.h"
-
-namespace net {
-
-class HttpResponseInfo;
-struct HttpRequestInfo;
-class HttpRequestHeaders;
-class HttpResponseHeaders;
-
-// Convert a SpdyHeaderBlock into an HttpResponseInfo.
-// |headers| input parameter with the SpdyHeaderBlock.
-// |response| output parameter for the HttpResponseInfo.
-// Returns true if successfully converted. False if the SpdyHeaderBlock is
-// incomplete (e.g. missing 'status' or 'version').
-bool SpdyHeadersToHttpResponse(const SpdyHeaderBlock& headers,
- SpdyMajorVersion protocol_version,
- HttpResponseInfo* response);
-
-// Create a SpdyHeaderBlock from HttpRequestInfo and HttpRequestHeaders.
-NET_EXPORT_PRIVATE void CreateSpdyHeadersFromHttpRequest(
- const HttpRequestInfo& info,
- const HttpRequestHeaders& request_headers,
- SpdyMajorVersion protocol_version,
- bool direct,
- SpdyHeaderBlock* headers);
-
-// Create a SpdyHeaderBlock from HttpResponseHeaders.
-NET_EXPORT_PRIVATE void CreateSpdyHeadersFromHttpResponse(
- const HttpResponseHeaders& response_headers,
- SpdyMajorVersion protocol_version,
- SpdyHeaderBlock* headers);
-
-// Returns the URL associated with the |headers| by assembling the
-// scheme, host and path from the protocol specific keys.
-NET_EXPORT_PRIVATE GURL GetUrlFromHeaderBlock(const SpdyHeaderBlock& headers,
- SpdyMajorVersion protocol_version,
- bool pushed);
-
-NET_EXPORT_PRIVATE SpdyPriority ConvertRequestPriorityToSpdyPriority(
- RequestPriority priority,
- SpdyMajorVersion protocol_version);
-
-NET_EXPORT_PRIVATE RequestPriority ConvertSpdyPriorityToRequestPriority(
- SpdyPriority priority,
- SpdyMajorVersion protocol_version);
-
-} // namespace net
-
-#endif // NET_SPDY_SPDY_HTTP_UTILS_H_
« no previous file with comments | « net/spdy/spdy_http_stream_unittest.cc ('k') | net/spdy/spdy_http_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698