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

Unified Diff: net/http/http_basic_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/http_basic_state_unittest.cc ('k') | net/http/http_basic_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_basic_stream.h
diff --git a/net/http/http_basic_stream.h b/net/http/http_basic_stream.h
deleted file mode 100644
index 194f7ef6c206380a55d1b4ab002222d9b98eb637..0000000000000000000000000000000000000000
--- a/net/http/http_basic_stream.h
+++ /dev/null
@@ -1,91 +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.
-//
-// HttpBasicStream is a simple implementation of HttpStream. It assumes it is
-// not sharing a sharing with any other HttpStreams, therefore it just reads and
-// writes directly to the Http Stream.
-
-#ifndef NET_HTTP_HTTP_BASIC_STREAM_H_
-#define NET_HTTP_HTTP_BASIC_STREAM_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "net/http/http_basic_state.h"
-#include "net/http/http_stream.h"
-
-namespace net {
-
-class BoundNetLog;
-class ClientSocketHandle;
-class HttpResponseInfo;
-struct HttpRequestInfo;
-class HttpRequestHeaders;
-class HttpStreamParser;
-class IOBuffer;
-
-class HttpBasicStream : public HttpStream {
- public:
- // Constructs a new HttpBasicStream. InitializeStream must be called to
- // initialize it correctly.
- HttpBasicStream(ClientSocketHandle* connection, bool using_proxy);
- ~HttpBasicStream() override;
-
- // HttpStream methods:
- int InitializeStream(const HttpRequestInfo* request_info,
- RequestPriority priority,
- const BoundNetLog& net_log,
- const CompletionCallback& callback) override;
-
- int SendRequest(const HttpRequestHeaders& headers,
- HttpResponseInfo* response,
- const CompletionCallback& callback) override;
-
- UploadProgress GetUploadProgress() const override;
-
- int ReadResponseHeaders(const CompletionCallback& callback) override;
-
- int ReadResponseBody(IOBuffer* buf,
- int buf_len,
- const CompletionCallback& callback) override;
-
- void Close(bool not_reusable) override;
-
- HttpStream* RenewStreamForAuth() override;
-
- bool IsResponseBodyComplete() const override;
-
- bool CanFindEndOfResponse() const override;
-
- bool IsConnectionReused() const override;
-
- void SetConnectionReused() override;
-
- bool IsConnectionReusable() const override;
-
- int64 GetTotalReceivedBytes() const override;
-
- 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;
-
- void SetPriority(RequestPriority priority) override;
-
- private:
- HttpStreamParser* parser() const { return state_.parser(); }
-
- HttpBasicState state_;
-
- DISALLOW_COPY_AND_ASSIGN(HttpBasicStream);
-};
-
-} // namespace net
-
-#endif // NET_HTTP_HTTP_BASIC_STREAM_H_
« no previous file with comments | « net/http/http_basic_state_unittest.cc ('k') | net/http/http_basic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698