| 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ | 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ | 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "components/onc/onc_export.h" | 9 #include "components/onc/onc_export.h" |
| 10 | 10 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 namespace ethernet { | 215 namespace ethernet { |
| 216 ONC_EXPORT extern const char kAuthentication[]; | 216 ONC_EXPORT extern const char kAuthentication[]; |
| 217 ONC_EXPORT extern const char kAuthenticationNone[]; | 217 ONC_EXPORT extern const char kAuthenticationNone[]; |
| 218 ONC_EXPORT extern const char kEAP[]; | 218 ONC_EXPORT extern const char kEAP[]; |
| 219 ONC_EXPORT extern const char k8021X[]; | 219 ONC_EXPORT extern const char k8021X[]; |
| 220 } // namespace ethernet | 220 } // namespace ethernet |
| 221 | 221 |
| 222 namespace tether { | 222 namespace tether { |
| 223 ONC_EXPORT extern const char kBatteryPercentage[]; | 223 ONC_EXPORT extern const char kBatteryPercentage[]; |
| 224 ONC_EXPORT extern const char kCarrier[]; | 224 ONC_EXPORT extern const char kCarrier[]; |
| 225 ONC_EXPORT extern const char kHasConnectedToHost[]; |
| 225 ONC_EXPORT extern const char kSignalStrength[]; | 226 ONC_EXPORT extern const char kSignalStrength[]; |
| 226 } // namespace tether | 227 } // namespace tether |
| 227 | 228 |
| 228 namespace wifi { | 229 namespace wifi { |
| 229 ONC_EXPORT extern const char kAllowGatewayARPPolling[]; | 230 ONC_EXPORT extern const char kAllowGatewayARPPolling[]; |
| 230 ONC_EXPORT extern const char kAutoConnect[]; | 231 ONC_EXPORT extern const char kAutoConnect[]; |
| 231 ONC_EXPORT extern const char kBSSID[]; | 232 ONC_EXPORT extern const char kBSSID[]; |
| 232 ONC_EXPORT extern const char kEAP[]; | 233 ONC_EXPORT extern const char kEAP[]; |
| 233 ONC_EXPORT extern const char kFrequency[]; | 234 ONC_EXPORT extern const char kFrequency[]; |
| 234 ONC_EXPORT extern const char kFrequencyList[]; | 235 ONC_EXPORT extern const char kFrequencyList[]; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 namespace device_state { | 452 namespace device_state { |
| 452 ONC_EXPORT extern const char kUninitialized[]; | 453 ONC_EXPORT extern const char kUninitialized[]; |
| 453 ONC_EXPORT extern const char kDisabled[]; | 454 ONC_EXPORT extern const char kDisabled[]; |
| 454 ONC_EXPORT extern const char kEnabling[]; | 455 ONC_EXPORT extern const char kEnabling[]; |
| 455 ONC_EXPORT extern const char kEnabled[]; | 456 ONC_EXPORT extern const char kEnabled[]; |
| 456 } // device_state | 457 } // device_state |
| 457 | 458 |
| 458 } // namespace onc | 459 } // namespace onc |
| 459 | 460 |
| 460 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 461 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |