| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_SOCKET_STREAM_SOCKET_H_ | 5 #ifndef NET_SOCKET_STREAM_SOCKET_H_ |
| 6 #define NET_SOCKET_STREAM_SOCKET_H_ | 6 #define NET_SOCKET_STREAM_SOCKET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "net/base/net_log.h" | 10 #include "net/base/net_log.h" |
| 11 #include "net/socket/next_proto.h" |
| 11 #include "net/socket/socket.h" | 12 #include "net/socket/socket.h" |
| 12 | 13 |
| 13 namespace net { | 14 namespace net { |
| 14 | 15 |
| 15 class AddressList; | 16 class AddressList; |
| 16 class IPEndPoint; | 17 class IPEndPoint; |
| 17 | 18 |
| 18 class NET_EXPORT_PRIVATE StreamSocket : public Socket { | 19 class NET_EXPORT_PRIVATE StreamSocket : public Socket { |
| 19 public: | 20 public: |
| 20 virtual ~StreamSocket() {} | 21 virtual ~StreamSocket() {} |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 // identify the motivation. | 126 // identify the motivation. |
| 126 bool omnibox_speculation_; | 127 bool omnibox_speculation_; |
| 127 bool subresource_speculation_; | 128 bool subresource_speculation_; |
| 128 DISALLOW_COPY_AND_ASSIGN(UseHistory); | 129 DISALLOW_COPY_AND_ASSIGN(UseHistory); |
| 129 }; | 130 }; |
| 130 }; | 131 }; |
| 131 | 132 |
| 132 } // namespace net | 133 } // namespace net |
| 133 | 134 |
| 134 #endif // NET_SOCKET_STREAM_SOCKET_H_ | 135 #endif // NET_SOCKET_STREAM_SOCKET_H_ |
| OLD | NEW |