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

Unified Diff: net/http/proxy_connect_redirect_http_stream.cc

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_connect_redirect_http_stream.h ('k') | net/http/transport_security_persister.h » ('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.cc
diff --git a/net/http/proxy_connect_redirect_http_stream.cc b/net/http/proxy_connect_redirect_http_stream.cc
deleted file mode 100644
index 4e12a327229005e284cb18ee21678b2457198886..0000000000000000000000000000000000000000
--- a/net/http/proxy_connect_redirect_http_stream.cc
+++ /dev/null
@@ -1,123 +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.
-
-#include "net/http/proxy_connect_redirect_http_stream.h"
-
-#include <cstddef>
-
-#include "base/logging.h"
-#include "net/base/net_errors.h"
-
-namespace net {
-
-ProxyConnectRedirectHttpStream::ProxyConnectRedirectHttpStream(
- LoadTimingInfo* load_timing_info)
- : has_load_timing_info_(load_timing_info != NULL) {
- if (has_load_timing_info_)
- load_timing_info_ = *load_timing_info;
-}
-
-ProxyConnectRedirectHttpStream::~ProxyConnectRedirectHttpStream() {}
-
-int ProxyConnectRedirectHttpStream::InitializeStream(
- const HttpRequestInfo* request_info,
- RequestPriority priority,
- const BoundNetLog& net_log,
- const CompletionCallback& callback) {
- NOTREACHED();
- return OK;
-}
-
-int ProxyConnectRedirectHttpStream::SendRequest(
- const HttpRequestHeaders& request_headers,
- HttpResponseInfo* response,
- const CompletionCallback& callback) {
- NOTREACHED();
- return OK;
-}
-
-int ProxyConnectRedirectHttpStream::ReadResponseHeaders(
- const CompletionCallback& callback) {
- NOTREACHED();
- return OK;
-}
-
-int ProxyConnectRedirectHttpStream::ReadResponseBody(
- IOBuffer* buf,
- int buf_len,
- const CompletionCallback& callback) {
- NOTREACHED();
- return OK;
-}
-
-void ProxyConnectRedirectHttpStream::Close(bool not_reusable) {}
-
-bool ProxyConnectRedirectHttpStream::IsResponseBodyComplete() const {
- NOTREACHED();
- return true;
-}
-
-bool ProxyConnectRedirectHttpStream::CanFindEndOfResponse() const {
- return true;
-}
-
-bool ProxyConnectRedirectHttpStream::IsConnectionReused() const {
- NOTREACHED();
- return false;
-}
-
-void ProxyConnectRedirectHttpStream::SetConnectionReused() {
- NOTREACHED();
-}
-
-bool ProxyConnectRedirectHttpStream::IsConnectionReusable() const {
- NOTREACHED();
- return false;
-}
-
-int64 ProxyConnectRedirectHttpStream::GetTotalReceivedBytes() const {
- return 0;
-}
-
-bool ProxyConnectRedirectHttpStream::GetLoadTimingInfo(
- LoadTimingInfo* load_timing_info) const {
- if (!has_load_timing_info_)
- return false;
-
- *load_timing_info = load_timing_info_;
- return true;
-}
-
-void ProxyConnectRedirectHttpStream::GetSSLInfo(SSLInfo* ssl_info) {
- NOTREACHED();
-}
-
-void ProxyConnectRedirectHttpStream::GetSSLCertRequestInfo(
- SSLCertRequestInfo* cert_request_info) {
- NOTREACHED();
-}
-
-bool ProxyConnectRedirectHttpStream::IsSpdyHttpStream() const {
- NOTREACHED();
- return false;
-}
-
-void ProxyConnectRedirectHttpStream::Drain(HttpNetworkSession* session) {
- NOTREACHED();
-}
-
-void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) {
- // Nothing to do.
-}
-
-UploadProgress ProxyConnectRedirectHttpStream::GetUploadProgress() const {
- return UploadProgress();
-}
-
-HttpStream* ProxyConnectRedirectHttpStream::RenewStreamForAuth() {
- NOTREACHED();
- return NULL;
-}
-
-} // namespace
« no previous file with comments | « net/http/proxy_connect_redirect_http_stream.h ('k') | net/http/transport_security_persister.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698