| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_SPDY_MULTIPLEXED_SESSION_H_ | 5 #ifndef NET_SPDY_MULTIPLEXED_SESSION_H_ |
| 6 #define NET_SPDY_MULTIPLEXED_SESSION_H_ | 6 #define NET_SPDY_MULTIPLEXED_SESSION_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "net/base/ip_endpoint.h" | 10 #include "net/base/ip_endpoint.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 base::WeakPtr<MultiplexedSession> session_; | 71 base::WeakPtr<MultiplexedSession> session_; |
| 72 SSLInfo ssl_info_; | 72 SSLInfo ssl_info_; |
| 73 bool has_ssl_info_; | 73 bool has_ssl_info_; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace net | 76 } // namespace net |
| 77 | 77 |
| 78 #endif // NET_SPDY_MULTIPLEXED_SESSION_H_ | 78 #endif // NET_SPDY_MULTIPLEXED_SESSION_H_ |
| OLD | NEW |