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

Unified Diff: net/http/proxy_connect_redirect_http_stream.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/http/proxy_client_socket.cc ('k') | net/http/proxy_connect_redirect_http_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/proxy_connect_redirect_http_stream.h
diff --git a/net/http/proxy_connect_redirect_http_stream.h b/net/http/proxy_connect_redirect_http_stream.h
deleted file mode 100644
index 701d18d425a0be30f8fc081793024b3871c405c3..0000000000000000000000000000000000000000
--- a/net/http/proxy_connect_redirect_http_stream.h
+++ /dev/null
@@ -1,75 +0,0 @@
-// Copyright 2013 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_HTTP_PROXY_CONNECT_REDIRECT_HTTP_STREAM_H_
-#define NET_HTTP_PROXY_CONNECT_REDIRECT_HTTP_STREAM_H_
-
-#include "base/compiler_specific.h"
-#include "base/memory/scoped_ptr.h"
-#include "net/base/load_timing_info.h"
-#include "net/http/http_stream.h"
-
-namespace net {
-
-// A dummy HttpStream with no body used when a redirect is returned
-// from a proxy.
-class ProxyConnectRedirectHttpStream : public HttpStream {
- public:
- // |load_timing_info| is the info that should be returned by
- // GetLoadTimingInfo(), or NULL if there is none. Does not take
- // ownership of |load_timing_info|.
- explicit ProxyConnectRedirectHttpStream(LoadTimingInfo* load_timing_info);
- ~ProxyConnectRedirectHttpStream() override;
-
- // All functions below are expected not to be called except for the
- // marked one.
-
- int InitializeStream(const HttpRequestInfo* request_info,
- RequestPriority priority,
- const BoundNetLog& net_log,
- const CompletionCallback& callback) override;
- int SendRequest(const HttpRequestHeaders& request_headers,
- HttpResponseInfo* response,
- const CompletionCallback& callback) override;
- int ReadResponseHeaders(const CompletionCallback& callback) override;
- int ReadResponseBody(IOBuffer* buf,
- int buf_len,
- const CompletionCallback& callback) override;
-
- // This function may be called.
- void Close(bool not_reusable) override;
-
- bool IsResponseBodyComplete() const override;
-
- // This function may be called.
- bool CanFindEndOfResponse() const override;
-
- bool IsConnectionReused() const override;
- void SetConnectionReused() override;
- bool IsConnectionReusable() const override;
-
- int64 GetTotalReceivedBytes() const override;
-
- // This function may be called.
- bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override;
-
- void GetSSLInfo(SSLInfo* ssl_info) override;
- void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override;
- bool IsSpdyHttpStream() const override;
- void Drain(HttpNetworkSession* session) override;
-
- // This function may be called.
- void SetPriority(RequestPriority priority) override;
-
- UploadProgress GetUploadProgress() const override;
- HttpStream* RenewStreamForAuth() override;
-
- private:
- bool has_load_timing_info_;
- LoadTimingInfo load_timing_info_;
-};
-
-} // namespace net
-
-#endif // NET_HTTP_PROXY_CONNECT_REDIRECT_HTTP_STREAM_H_
« no previous file with comments | « net/http/proxy_client_socket.cc ('k') | net/http/proxy_connect_redirect_http_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698