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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 extern const char kCloudPrintAuthToken[]; | 684 extern const char kCloudPrintAuthToken[]; |
685 extern const char kCloudPrintXMPPAuthToken[]; | 685 extern const char kCloudPrintXMPPAuthToken[]; |
686 extern const char kCloudPrintEmail[]; | 686 extern const char kCloudPrintEmail[]; |
687 extern const char kCloudPrintPrintSystemSettings[]; | 687 extern const char kCloudPrintPrintSystemSettings[]; |
688 extern const char kCloudPrintEnableJobPoll[]; | 688 extern const char kCloudPrintEnableJobPoll[]; |
689 extern const char kCloudPrintRobotRefreshToken[]; | 689 extern const char kCloudPrintRobotRefreshToken[]; |
690 extern const char kCloudPrintRobotEmail[]; | 690 extern const char kCloudPrintRobotEmail[]; |
691 extern const char kCloudPrintConnectNewPrinters[]; | 691 extern const char kCloudPrintConnectNewPrinters[]; |
692 extern const char kCloudPrintXmppPingEnabled[]; | 692 extern const char kCloudPrintXmppPingEnabled[]; |
693 extern const char kCloudPrintXmppPingTimeout[]; | 693 extern const char kCloudPrintXmppPingTimeout[]; |
694 extern const char kCloudPrintPrinterBlacklist[]; | 694 extern const char kCloudPrintPrinters[]; |
695 extern const char kCloudPrintSubmitEnabled[]; | 695 extern const char kCloudPrintSubmitEnabled[]; |
| 696 extern const char kCloudPrintUserSettings[]; |
696 | 697 |
697 #if !defined(OS_ANDROID) | 698 #if !defined(OS_ANDROID) |
698 extern const char kChromeToMobileDeviceList[]; | 699 extern const char kChromeToMobileDeviceList[]; |
699 #endif | 700 #endif |
700 | 701 |
701 extern const char kProxy[]; | 702 extern const char kProxy[]; |
702 extern const char kMaxConnectionsPerProxy[]; | 703 extern const char kMaxConnectionsPerProxy[]; |
703 | 704 |
704 extern const char kManagedDefaultCookiesSetting[]; | 705 extern const char kManagedDefaultCookiesSetting[]; |
705 extern const char kManagedDefaultImagesSetting[]; | 706 extern const char kManagedDefaultImagesSetting[]; |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 extern const char kAppListProfile[]; | 887 extern const char kAppListProfile[]; |
887 | 888 |
888 extern const char kLastAppListLaunchPing[]; | 889 extern const char kLastAppListLaunchPing[]; |
889 extern const char kAppListLaunchCount[]; | 890 extern const char kAppListLaunchCount[]; |
890 extern const char kLastAppListAppLaunchPing[]; | 891 extern const char kLastAppListAppLaunchPing[]; |
891 extern const char kAppListAppLaunchCount[]; | 892 extern const char kAppListAppLaunchCount[]; |
892 | 893 |
893 } // namespace prefs | 894 } // namespace prefs |
894 | 895 |
895 #endif // CHROME_COMMON_PREF_NAMES_H_ | 896 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |