| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 extern const char kCloudPrintProxyEnabled[]; | 630 extern const char kCloudPrintProxyEnabled[]; |
| 631 extern const char kCloudPrintProxyId[]; | 631 extern const char kCloudPrintProxyId[]; |
| 632 extern const char kCloudPrintAuthToken[]; | 632 extern const char kCloudPrintAuthToken[]; |
| 633 extern const char kCloudPrintXMPPAuthToken[]; | 633 extern const char kCloudPrintXMPPAuthToken[]; |
| 634 extern const char kCloudPrintEmail[]; | 634 extern const char kCloudPrintEmail[]; |
| 635 extern const char kCloudPrintPrintSystemSettings[]; | 635 extern const char kCloudPrintPrintSystemSettings[]; |
| 636 extern const char kCloudPrintEnableJobPoll[]; | 636 extern const char kCloudPrintEnableJobPoll[]; |
| 637 extern const char kCloudPrintRobotRefreshToken[]; | 637 extern const char kCloudPrintRobotRefreshToken[]; |
| 638 extern const char kCloudPrintRobotEmail[]; | 638 extern const char kCloudPrintRobotEmail[]; |
| 639 extern const char kCloudPrintConnectNewPrinters[]; | 639 extern const char kCloudPrintConnectNewPrinters[]; |
| 640 extern const char kCloudPrintXmppPingEnabled[]; |
| 641 extern const char kCloudPrintXmppPingTimeout[]; |
| 640 extern const char kCloudPrintPrinterBlacklist[]; | 642 extern const char kCloudPrintPrinterBlacklist[]; |
| 641 extern const char kCloudPrintSubmitEnabled[]; | 643 extern const char kCloudPrintSubmitEnabled[]; |
| 642 | 644 |
| 643 #if !defined(OS_ANDROID) | 645 #if !defined(OS_ANDROID) |
| 644 extern const char kChromeToMobileDeviceList[]; | 646 extern const char kChromeToMobileDeviceList[]; |
| 645 #endif | 647 #endif |
| 646 | 648 |
| 647 extern const char kProxy[]; | 649 extern const char kProxy[]; |
| 648 extern const char kMaxConnectionsPerProxy[]; | 650 extern const char kMaxConnectionsPerProxy[]; |
| 649 | 651 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 extern const char kInManagedMode[]; | 768 extern const char kInManagedMode[]; |
| 767 | 769 |
| 768 extern const char kNetworkProfileWarningsLeft[]; | 770 extern const char kNetworkProfileWarningsLeft[]; |
| 769 extern const char kNetworkProfileLastWarningTime[]; | 771 extern const char kNetworkProfileLastWarningTime[]; |
| 770 | 772 |
| 771 extern const char kLastPolicyStatisticsUpdate[]; | 773 extern const char kLastPolicyStatisticsUpdate[]; |
| 772 | 774 |
| 773 } // namespace prefs | 775 } // namespace prefs |
| 774 | 776 |
| 775 #endif // CHROME_COMMON_PREF_NAMES_H_ | 777 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |