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

Unified Diff: net/spdy/multiplexed_http_stream.h

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 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/mock_spdy_framer_visitor.cc ('k') | net/spdy/multiplexed_http_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/multiplexed_http_stream.h
diff --git a/net/spdy/multiplexed_http_stream.h b/net/spdy/multiplexed_http_stream.h
deleted file mode 100644
index 1fe4a2a5eb5a877127365b9c41c113cbcd7daf58..0000000000000000000000000000000000000000
--- a/net/spdy/multiplexed_http_stream.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2016 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_MULTIPLEXED_HTTP_STREAM_H_
-#define NET_SPDY_MULTIPLEXED_HTTP_STREAM_H_
-
-#include "net/http/http_stream.h"
-#include "net/spdy/multiplexed_session.h"
-
-namespace net {
-
-// Base class for SPDY and QUIC HttpStream subclasses.
-class NET_EXPORT_PRIVATE MultiplexedHttpStream : public HttpStream {
- public:
- explicit MultiplexedHttpStream(MultiplexedSessionHandle session);
- ~MultiplexedHttpStream() override;
-
- bool GetRemoteEndpoint(IPEndPoint* endpoint) override;
- void GetSSLInfo(SSLInfo* ssl_info) override;
- void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override;
- Error GetTokenBindingSignature(crypto::ECPrivateKey* key,
- TokenBindingType tb_type,
- std::vector<uint8_t>* out) override;
- void Drain(HttpNetworkSession* session) override;
- HttpStream* RenewStreamForAuth() override;
- void SetConnectionReused() override;
- bool CanReuseConnection() const override;
-
- // Caches SSL info from the underlying session.
- void SaveSSLInfo();
-
- private:
- MultiplexedSessionHandle session_;
-};
-
-} // namespace net
-
-#endif // NET_SPDY_MULTIPLEXED_HTTP_STREAM_H_
« no previous file with comments | « net/spdy/mock_spdy_framer_visitor.cc ('k') | net/spdy/multiplexed_http_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698