| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_QUIC_STREAM_FACTORY_H_ | 5 #ifndef NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_ |
| 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ | 6 #define NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <deque> | 11 #include <deque> |
| 12 #include <list> | 12 #include <list> |
| 13 #include <map> | 13 #include <map> |
| 14 #include <set> | 14 #include <set> |
| 15 #include <string> | 15 #include <string> |
| 16 #include <vector> | 16 #include <vector> |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 | 640 |
| 641 const scoped_refptr<SSLConfigService> ssl_config_service_; | 641 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 642 | 642 |
| 643 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 643 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
| 644 | 644 |
| 645 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 645 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
| 646 }; | 646 }; |
| 647 | 647 |
| 648 } // namespace net | 648 } // namespace net |
| 649 | 649 |
| 650 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 650 #endif // NET_QUIC_CHROMIUM_QUIC_STREAM_FACTORY_H_ |
| OLD | NEW |