| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BASE_NET_ERROR_DETAILS_H_ | 5 #ifndef NET_BASE_NET_ERROR_DETAILS_H_ |
| 6 #define NET_BASE_NET_ERROR_DETAILS_H_ | 6 #define NET_BASE_NET_ERROR_DETAILS_H_ |
| 7 | 7 |
| 8 #include "net/base/net_export.h" | 8 #include "net/base/net_export.h" |
| 9 #include "net/http/http_response_info.h" | 9 #include "net/http/http_response_info.h" |
| 10 #include "net/quic/core/quic_packets.h" | 10 #include "net/quic/core/quic_packets.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 // Will be discarded by upper layers if the connection type can be fetched | 34 // Will be discarded by upper layers if the connection type can be fetched |
| 35 // from response header from the server. | 35 // from response header from the server. |
| 36 HttpResponseInfo::ConnectionInfo connection_info; | 36 HttpResponseInfo::ConnectionInfo connection_info; |
| 37 // True if receives a GoAway frame from the server due to connection | 37 // True if receives a GoAway frame from the server due to connection |
| 38 // migration with port change. | 38 // migration with port change. |
| 39 bool quic_port_migration_detected; | 39 bool quic_port_migration_detected; |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace net | 42 } // namespace net |
| 43 | 43 |
| 44 #endif | 44 #endif // NET_BASE_NET_ERROR_DETAILS_H_ |
| OLD | NEW |