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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 extern const char kSyncPreferences[]; | 564 extern const char kSyncPreferences[]; |
565 extern const char kSyncAppNotifications[]; | 565 extern const char kSyncAppNotifications[]; |
566 extern const char kSyncAppSettings[]; | 566 extern const char kSyncAppSettings[]; |
567 extern const char kSyncApps[]; | 567 extern const char kSyncApps[]; |
568 extern const char kSyncAutofill[]; | 568 extern const char kSyncAutofill[]; |
569 extern const char kSyncAutofillProfile[]; | 569 extern const char kSyncAutofillProfile[]; |
570 extern const char kSyncThemes[]; | 570 extern const char kSyncThemes[]; |
571 extern const char kSyncTypedUrls[]; | 571 extern const char kSyncTypedUrls[]; |
572 extern const char kSyncExtensions[]; | 572 extern const char kSyncExtensions[]; |
573 extern const char kSyncExtensionSettings[]; | 573 extern const char kSyncExtensionSettings[]; |
| 574 extern const char kSyncHistoryDeleteDirectives[]; |
574 extern const char kSyncManaged[]; | 575 extern const char kSyncManaged[]; |
575 extern const char kSyncSearchEngines[]; | 576 extern const char kSyncSearchEngines[]; |
576 extern const char kSyncSessions[]; | 577 extern const char kSyncSessions[]; |
577 extern const char kSyncSuppressStart[]; | 578 extern const char kSyncSuppressStart[]; |
578 extern const char kGoogleServicesUsername[]; | 579 extern const char kGoogleServicesUsername[]; |
579 extern const char kGoogleServicesUsernamePattern[]; | 580 extern const char kGoogleServicesUsernamePattern[]; |
580 extern const char kSyncUsingSecondaryPassphrase[]; | 581 extern const char kSyncUsingSecondaryPassphrase[]; |
581 extern const char kSyncEncryptionBootstrapToken[]; | 582 extern const char kSyncEncryptionBootstrapToken[]; |
582 extern const char kSyncKeystoreEncryptionBootstrapToken[]; | 583 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
583 extern const char kSyncAcknowledgedSyncTypes[]; | 584 extern const char kSyncAcknowledgedSyncTypes[]; |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 extern const char kNetworkProfileWarningsLeft[]; | 749 extern const char kNetworkProfileWarningsLeft[]; |
749 extern const char kNetworkProfileLastWarningTime[]; | 750 extern const char kNetworkProfileLastWarningTime[]; |
750 | 751 |
751 #if defined(OS_MACOSX) | 752 #if defined(OS_MACOSX) |
752 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 753 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
753 #endif // defined(OS_MACOSX) | 754 #endif // defined(OS_MACOSX) |
754 | 755 |
755 } // namespace prefs | 756 } // namespace prefs |
756 | 757 |
757 #endif // CHROME_COMMON_PREF_NAMES_H_ | 758 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |