| // 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_session.h" |
| MultiplexedSessionHandle::MultiplexedSessionHandle( |
| base::WeakPtr<MultiplexedSession> session) |
| MultiplexedSessionHandle::~MultiplexedSessionHandle() = default; |
| bool MultiplexedSessionHandle::GetRemoteEndpoint(IPEndPoint* endpoint) { |
| return session_->GetRemoteEndpoint(endpoint); |
| bool MultiplexedSessionHandle::GetSSLInfo(SSLInfo* ssl_info) const { |
| void MultiplexedSessionHandle::SaveSSLInfo() { |
| has_ssl_info_ = session_->GetSSLInfo(&ssl_info_); |