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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 ONC_EXPORT extern const char kPort[]; | 424 ONC_EXPORT extern const char kPort[]; |
425 ONC_EXPORT extern const char kSocks[]; | 425 ONC_EXPORT extern const char kSocks[]; |
426 ONC_EXPORT extern const char kType[]; | 426 ONC_EXPORT extern const char kType[]; |
427 ONC_EXPORT extern const char kWPAD[]; | 427 ONC_EXPORT extern const char kWPAD[]; |
428 } // namespace proxy | 428 } // namespace proxy |
429 | 429 |
430 namespace global_network_config { | 430 namespace global_network_config { |
431 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 431 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
432 } // global_network_config | 432 } // global_network_config |
433 | 433 |
| 434 namespace device_state { |
| 435 ONC_EXPORT extern const char kUninitialized[]; |
| 436 ONC_EXPORT extern const char kDisabled[]; |
| 437 ONC_EXPORT extern const char kEnabling[]; |
| 438 ONC_EXPORT extern const char kEnabled[]; |
| 439 } // device_state |
| 440 |
434 } // namespace onc | 441 } // namespace onc |
435 | 442 |
436 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 443 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
OLD | NEW |