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