| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 ONC_EXPORT extern const char kPort[]; | 410 ONC_EXPORT extern const char kPort[]; |
| 411 ONC_EXPORT extern const char kSocks[]; | 411 ONC_EXPORT extern const char kSocks[]; |
| 412 ONC_EXPORT extern const char kType[]; | 412 ONC_EXPORT extern const char kType[]; |
| 413 ONC_EXPORT extern const char kWPAD[]; | 413 ONC_EXPORT extern const char kWPAD[]; |
| 414 } // namespace proxy | 414 } // namespace proxy |
| 415 | 415 |
| 416 namespace global_network_config { | 416 namespace global_network_config { |
| 417 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 417 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 418 } // global_network_config | 418 } // global_network_config |
| 419 | 419 |
| 420 namespace device_state { |
| 421 ONC_EXPORT extern const char kUninitialized[]; |
| 422 ONC_EXPORT extern const char kDisabled[]; |
| 423 ONC_EXPORT extern const char kEnabling[]; |
| 424 ONC_EXPORT extern const char kEnabled[]; |
| 425 } // device_state |
| 426 |
| 420 } // namespace onc | 427 } // namespace onc |
| 421 | 428 |
| 422 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 429 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |