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

Unified Diff: net/spdy/multiplexed_http_stream.cc

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/multiplexed_http_stream.h ('k') | net/spdy/multiplexed_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/multiplexed_http_stream.cc
diff --git a/net/spdy/multiplexed_http_stream.cc b/net/spdy/multiplexed_http_stream.cc
deleted file mode 100644
index ad5a723ab4874541b6b18eba8df91ab6b4b23081..0000000000000000000000000000000000000000
--- a/net/spdy/multiplexed_http_stream.cc
+++ /dev/null
@@ -1,59 +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.
-
-#include "net/spdy/multiplexed_http_stream.h"
-
-#include "base/logging.h"
-
-namespace net {
-
-MultiplexedHttpStream::MultiplexedHttpStream(MultiplexedSessionHandle session)
- : session_(session) {}
-
-MultiplexedHttpStream::~MultiplexedHttpStream() {}
-
-bool MultiplexedHttpStream::GetRemoteEndpoint(IPEndPoint* endpoint) {
- return session_.GetRemoteEndpoint(endpoint);
-}
-
-void MultiplexedHttpStream::GetSSLInfo(SSLInfo* ssl_info) {
- session_.GetSSLInfo(ssl_info);
-}
-
-void MultiplexedHttpStream::SaveSSLInfo() {
- session_.SaveSSLInfo();
-}
-
-void MultiplexedHttpStream::GetSSLCertRequestInfo(
- SSLCertRequestInfo* cert_request_info) {
- // A multiplexed stream cannot request client certificates. Client
- // authentication may only occur during the initial SSL handshake.
- NOTREACHED();
-}
-
-Error MultiplexedHttpStream::GetTokenBindingSignature(
- crypto::ECPrivateKey* key,
- TokenBindingType tb_type,
- std::vector<uint8_t>* out) {
- return session_.GetTokenBindingSignature(key, tb_type, out);
-}
-
-void MultiplexedHttpStream::Drain(HttpNetworkSession* session) {
- NOTREACHED();
- Close(false);
- delete this;
-}
-
-HttpStream* MultiplexedHttpStream::RenewStreamForAuth() {
- return nullptr;
-}
-
-void MultiplexedHttpStream::SetConnectionReused() {}
-
-bool MultiplexedHttpStream::CanReuseConnection() const {
- // Multiplexed streams aren't considered reusable.
- return false;
-}
-
-} // namespace net
« no previous file with comments | « net/spdy/multiplexed_http_stream.h ('k') | net/spdy/multiplexed_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698