| 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 """Defines a set of constants specific to appurify.""" | 5 """Defines a set of constants specific to appurify.""" |
| 6 | 6 |
| 7 # Appurify network config constants. | 7 # Appurify network config constants. |
| 8 class NETWORK(object): | 8 class NETWORK(object): |
| 9 WIFI_1_BAR = 1 | 9 WIFI_1_BAR = 1 |
| 10 SPRINT_4G_LTE_4_BARS = 2 | 10 SPRINT_4G_LTE_4_BARS = 2 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 PUBLIC_WIFI_MCDONALDS_4_BARS = 39 | 47 PUBLIC_WIFI_MCDONALDS_4_BARS = 39 |
| 48 PUBLIC_WIFI_MCDONALDS_2_BARS = 40 | 48 PUBLIC_WIFI_MCDONALDS_2_BARS = 40 |
| 49 PUBLIC_WIFI_MCDONALDS_1_BAR = 41 | 49 PUBLIC_WIFI_MCDONALDS_1_BAR = 41 |
| 50 PUBLIC_WIFI_KOHLS_5_BARS = 42 | 50 PUBLIC_WIFI_KOHLS_5_BARS = 42 |
| 51 PUBLIC_WIFI_KOHLS_4_BARS = 43 | 51 PUBLIC_WIFI_KOHLS_4_BARS = 43 |
| 52 PUBLIC_WIFI_KOHLS_2_BARS = 44 | 52 PUBLIC_WIFI_KOHLS_2_BARS = 44 |
| 53 PUBLIC_WIFI_ATANDT_5_BARS = 45 | 53 PUBLIC_WIFI_ATANDT_5_BARS = 45 |
| 54 PUBLIC_WIFI_ATANDT_4_BARS = 46 | 54 PUBLIC_WIFI_ATANDT_4_BARS = 46 |
| 55 PUBLIC_WIFI_ATANDT_2_BARS = 47 | 55 PUBLIC_WIFI_ATANDT_2_BARS = 47 |
| 56 PUBLIC_WIFI_ATANDT_1_BAR = 48 | 56 PUBLIC_WIFI_ATANDT_1_BAR = 48 |
| 57 BOINGO = 49 | 57 BOINGO = 49 |
| 58 |
| OLD | NEW |