| 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 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 extern const char kSyncAppNotifications[]; | 577 extern const char kSyncAppNotifications[]; |
| 578 extern const char kSyncAppSettings[]; | 578 extern const char kSyncAppSettings[]; |
| 579 extern const char kSyncApps[]; | 579 extern const char kSyncApps[]; |
| 580 extern const char kSyncAutofill[]; | 580 extern const char kSyncAutofill[]; |
| 581 extern const char kSyncAutofillProfile[]; | 581 extern const char kSyncAutofillProfile[]; |
| 582 extern const char kSyncThemes[]; | 582 extern const char kSyncThemes[]; |
| 583 extern const char kSyncTypedUrls[]; | 583 extern const char kSyncTypedUrls[]; |
| 584 extern const char kSyncExtensions[]; | 584 extern const char kSyncExtensions[]; |
| 585 extern const char kSyncExtensionSettings[]; | 585 extern const char kSyncExtensionSettings[]; |
| 586 extern const char kSyncHistoryDeleteDirectives[]; | 586 extern const char kSyncHistoryDeleteDirectives[]; |
| 587 extern const char kSyncPushNotifications[]; |
| 587 extern const char kSyncManaged[]; | 588 extern const char kSyncManaged[]; |
| 588 extern const char kSyncSearchEngines[]; | 589 extern const char kSyncSearchEngines[]; |
| 589 extern const char kSyncSessions[]; | 590 extern const char kSyncSessions[]; |
| 590 extern const char kSyncSuppressStart[]; | 591 extern const char kSyncSuppressStart[]; |
| 591 extern const char kGoogleServicesLastUsername[]; | 592 extern const char kGoogleServicesLastUsername[]; |
| 592 extern const char kGoogleServicesUsername[]; | 593 extern const char kGoogleServicesUsername[]; |
| 593 extern const char kGoogleServicesUsernamePattern[]; | 594 extern const char kGoogleServicesUsernamePattern[]; |
| 594 extern const char kSyncUsingSecondaryPassphrase[]; | 595 extern const char kSyncUsingSecondaryPassphrase[]; |
| 595 extern const char kSyncEncryptionBootstrapToken[]; | 596 extern const char kSyncEncryptionBootstrapToken[]; |
| 596 extern const char kSyncKeystoreEncryptionBootstrapToken[]; | 597 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 extern const char kInManagedMode[]; | 796 extern const char kInManagedMode[]; |
| 796 | 797 |
| 797 extern const char kNetworkProfileWarningsLeft[]; | 798 extern const char kNetworkProfileWarningsLeft[]; |
| 798 extern const char kNetworkProfileLastWarningTime[]; | 799 extern const char kNetworkProfileLastWarningTime[]; |
| 799 | 800 |
| 800 extern const char kLastPolicyStatisticsUpdate[]; | 801 extern const char kLastPolicyStatisticsUpdate[]; |
| 801 | 802 |
| 802 } // namespace prefs | 803 } // namespace prefs |
| 803 | 804 |
| 804 #endif // CHROME_COMMON_PREF_NAMES_H_ | 805 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |