| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 extern const char kCloudPrintProxyEnabled[]; | 538 extern const char kCloudPrintProxyEnabled[]; |
| 539 extern const char kCloudPrintProxyId[]; | 539 extern const char kCloudPrintProxyId[]; |
| 540 extern const char kCloudPrintAuthToken[]; | 540 extern const char kCloudPrintAuthToken[]; |
| 541 extern const char kCloudPrintXMPPAuthToken[]; | 541 extern const char kCloudPrintXMPPAuthToken[]; |
| 542 extern const char kCloudPrintEmail[]; | 542 extern const char kCloudPrintEmail[]; |
| 543 extern const char kCloudPrintPrintSystemSettings[]; | 543 extern const char kCloudPrintPrintSystemSettings[]; |
| 544 extern const char kCloudPrintEnableJobPoll[]; | 544 extern const char kCloudPrintEnableJobPoll[]; |
| 545 extern const char kCloudPrintRobotRefreshToken[]; | 545 extern const char kCloudPrintRobotRefreshToken[]; |
| 546 extern const char kCloudPrintRobotEmail[]; | 546 extern const char kCloudPrintRobotEmail[]; |
| 547 extern const char kVirtualPrinterDriverEnabled[]; | 547 extern const char kVirtualPrinterDriverEnabled[]; |
| 548 extern const char kCloudPrintSubmitEnabled[]; |
| 548 | 549 |
| 549 extern const char kProxy[]; | 550 extern const char kProxy[]; |
| 550 extern const char kMaxConnectionsPerProxy[]; | 551 extern const char kMaxConnectionsPerProxy[]; |
| 551 | 552 |
| 552 extern const char kManagedDefaultCookiesSetting[]; | 553 extern const char kManagedDefaultCookiesSetting[]; |
| 553 extern const char kManagedDefaultImagesSetting[]; | 554 extern const char kManagedDefaultImagesSetting[]; |
| 554 extern const char kManagedDefaultJavaScriptSetting[]; | 555 extern const char kManagedDefaultJavaScriptSetting[]; |
| 555 extern const char kManagedDefaultPluginsSetting[]; | 556 extern const char kManagedDefaultPluginsSetting[]; |
| 556 extern const char kManagedDefaultPopupsSetting[]; | 557 extern const char kManagedDefaultPopupsSetting[]; |
| 557 extern const char kManagedDefaultGeolocationSetting[]; | 558 extern const char kManagedDefaultGeolocationSetting[]; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 | 603 |
| 603 extern const char kDevicePolicyRefreshRate[]; | 604 extern const char kDevicePolicyRefreshRate[]; |
| 604 extern const char kUserPolicyRefreshRate[]; | 605 extern const char kUserPolicyRefreshRate[]; |
| 605 | 606 |
| 606 extern const char kRecoveryComponentVersion[]; | 607 extern const char kRecoveryComponentVersion[]; |
| 607 extern const char kComponentUpdaterState[]; | 608 extern const char kComponentUpdaterState[]; |
| 608 | 609 |
| 609 } // namespace prefs | 610 } // namespace prefs |
| 610 | 611 |
| 611 #endif // CHROME_COMMON_PREF_NAMES_H_ | 612 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |