OLD | NEW |
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_QUIC_QUARTC_QUARTC_STREAM_H_ | 5 #ifndef NET_QUIC_QUARTC_QUARTC_STREAM_H_ |
6 #define NET_QUIC_QUARTC_QUARTC_STREAM_H_ | 6 #define NET_QUIC_QUARTC_QUARTC_STREAM_H_ |
7 | 7 |
8 #include "net/quic/core/quic_session.h" | 8 #include "net/quic/core/quic_session.h" |
9 #include "net/quic/core/quic_stream.h" | 9 #include "net/quic/core/quic_stream.h" |
10 #include "net/quic/quartc/quartc_stream_interface.h" | 10 #include "net/quic/quartc/quartc_stream_interface.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 void Close() override; | 40 void Close() override; |
41 | 41 |
42 void SetDelegate(QuartcStreamInterface::Delegate* delegate) override; | 42 void SetDelegate(QuartcStreamInterface::Delegate* delegate) override; |
43 | 43 |
44 private: | 44 private: |
45 QuartcStreamInterface::Delegate* delegate_ = nullptr; | 45 QuartcStreamInterface::Delegate* delegate_ = nullptr; |
46 }; | 46 }; |
47 | 47 |
48 } // namespace net | 48 } // namespace net |
49 | 49 |
50 #endif // NET_QUIC_QUARTC_STREAM_H_ | 50 #endif // NET_QUIC_QUARTC_QUARTC_STREAM_H_ |
OLD | NEW |