| 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_NQE_EFFECTIVE_CONNECTION_TYPE_H_ | 5 #ifndef NET_NQE_EFFECTIVE_CONNECTION_TYPE_H_ |
| 6 #define NET_NQE_EFFECTIVE_CONNECTION_TYPE_H_ | 6 #define NET_NQE_EFFECTIVE_CONNECTION_TYPE_H_ |
| 7 | 7 |
| 8 namespace net { | 8 namespace net { |
| 9 | 9 |
| 10 // EffectiveConnectionType is the connection type whose typical performance is | 10 // EffectiveConnectionType is the connection type whose typical performance is |
| 11 // most similar to the measured performance of the network in use. In many | 11 // most similar to the measured performance of the network in use. In many |
| 12 // cases, the "effective" connection type and the actual type of connection in | 12 // cases, the "effective" connection type and the actual type of connection in |
| 13 // use are the same, but often a network connection performs significantly | 13 // use are the same, but often a network connection performs significantly |
| 14 // differently, usually worse, from its expected capabilities. | 14 // differently, usually worse, from its expected capabilities. |
| 15 // EffectiveConnectionType of a network is independent of if the current | 15 // EffectiveConnectionType of a network is independent of if the current |
| 16 // connection is metered or not. For example, an unmetered slow connection may | 16 // connection is metered or not. For example, an unmetered slow connection may |
| 17 // have EFFECTIVE_CONNECTION_TYPE_SLOW_2G as its effective connection type. | 17 // have EFFECTIVE_CONNECTION_TYPE_SLOW_2G as its effective connection type. |
| 18 // An invalid Java prefix to strip is specified to prevent the Java class | |
| 19 // generator from automatically stripping off the common prefix | |
| 20 // ("EFFECTIVE_CONNECTION_TYPE_"). | |
| 21 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.net | |
| 22 // GENERATED_JAVA_CLASS_NAME_OVERRIDE: ChromiumEffectiveConnectionType | |
| 23 // GENERATED_JAVA_PREFIX_TO_STRIP: PREFIX_NOT_PRESENT_ | |
| 24 enum EffectiveConnectionType { | 18 enum EffectiveConnectionType { |
| 25 // The connection types should be in increasing order of quality. | 19 // The connection types should be in increasing order of quality. |
| 26 EFFECTIVE_CONNECTION_TYPE_UNKNOWN = 0, | 20 EFFECTIVE_CONNECTION_TYPE_UNKNOWN = 0, |
| 27 EFFECTIVE_CONNECTION_TYPE_OFFLINE, | 21 EFFECTIVE_CONNECTION_TYPE_OFFLINE, |
| 28 EFFECTIVE_CONNECTION_TYPE_SLOW_2G, | 22 EFFECTIVE_CONNECTION_TYPE_SLOW_2G, |
| 29 EFFECTIVE_CONNECTION_TYPE_2G, | 23 EFFECTIVE_CONNECTION_TYPE_2G, |
| 30 EFFECTIVE_CONNECTION_TYPE_3G, | 24 EFFECTIVE_CONNECTION_TYPE_3G, |
| 31 EFFECTIVE_CONNECTION_TYPE_4G, | 25 EFFECTIVE_CONNECTION_TYPE_4G, |
| 32 EFFECTIVE_CONNECTION_TYPE_BROADBAND, | 26 EFFECTIVE_CONNECTION_TYPE_BROADBAND, |
| 33 EFFECTIVE_CONNECTION_TYPE_LAST, | 27 EFFECTIVE_CONNECTION_TYPE_LAST, |
| 34 }; | 28 }; |
| 35 | 29 |
| 36 } // namespace net | 30 } // namespace net |
| 37 | 31 |
| 38 #endif // NET_NQE_EFFECTIVE_CONNECTION_TYPE_H_ | 32 #endif // NET_NQE_EFFECTIVE_CONNECTION_TYPE_H_ |
| OLD | NEW |