OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "components/onc/onc_constants.h" | 5 #include "components/onc/onc_constants.h" |
6 | 6 |
7 // Constants for ONC properties. | 7 // Constants for ONC properties. |
8 namespace onc { | 8 namespace onc { |
9 | 9 |
10 const char kAugmentationActiveSetting[] = "Active"; | 10 const char kAugmentationActiveSetting[] = "Active"; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 } | 61 } |
62 | 62 |
63 } // namespace network_config | 63 } // namespace network_config |
64 | 64 |
65 namespace network_type { | 65 namespace network_type { |
66 const char kAllTypes[] = "All"; | 66 const char kAllTypes[] = "All"; |
67 const char kCellular[] = "Cellular"; | 67 const char kCellular[] = "Cellular"; |
68 const char kEthernet[] = "Ethernet"; | 68 const char kEthernet[] = "Ethernet"; |
69 const char kVPN[] = "VPN"; | 69 const char kVPN[] = "VPN"; |
70 const char kWiFi[] = "WiFi"; | 70 const char kWiFi[] = "WiFi"; |
| 71 const char kWimax[] = "Wimax"; |
| 72 const char kWireless[] = "Wireless"; |
71 } // namespace network_type | 73 } // namespace network_type |
72 | 74 |
73 namespace cellular { | 75 namespace cellular { |
74 const char kActivateOverNonCellularNetwork[] = "ActivateOverNonCellularNetwork"; | 76 const char kActivateOverNonCellularNetwork[] = "ActivateOverNonCellularNetwork"; |
75 const char kActivationState[] = "ActivationState"; | 77 const char kActivationState[] = "ActivationState"; |
76 const char kAllowRoaming[] = "AllowRoaming"; | 78 const char kAllowRoaming[] = "AllowRoaming"; |
77 const char kAPN[] = "APN"; | 79 const char kAPN[] = "APN"; |
78 const char kAPNList[] = "APNList"; | 80 const char kAPNList[] = "APNList"; |
79 const char kCarrier[] = "Carrier"; | 81 const char kCarrier[] = "Carrier"; |
80 const char kESN[] = "ESN"; | 82 const char kESN[] = "ESN"; |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 const char kLoginIDField[] = "${LOGIN_ID}"; | 321 const char kLoginIDField[] = "${LOGIN_ID}"; |
320 const char kEmailField[] = "${LOGIN_EMAIL}"; | 322 const char kEmailField[] = "${LOGIN_EMAIL}"; |
321 } // namespace substitutes | 323 } // namespace substitutes |
322 | 324 |
323 namespace global_network_config { | 325 namespace global_network_config { |
324 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 326 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
325 "AllowOnlyPolicyNetworksToAutoconnect"; | 327 "AllowOnlyPolicyNetworksToAutoconnect"; |
326 } // global_network_config | 328 } // global_network_config |
327 | 329 |
328 } // namespace onc | 330 } // namespace onc |
OLD | NEW |