| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 extern const char kSyncExtensions[]; | 572 extern const char kSyncExtensions[]; |
| 573 extern const char kSyncExtensionSettings[]; | 573 extern const char kSyncExtensionSettings[]; |
| 574 extern const char kSyncManaged[]; | 574 extern const char kSyncManaged[]; |
| 575 extern const char kSyncSearchEngines[]; | 575 extern const char kSyncSearchEngines[]; |
| 576 extern const char kSyncSessions[]; | 576 extern const char kSyncSessions[]; |
| 577 extern const char kSyncSuppressStart[]; | 577 extern const char kSyncSuppressStart[]; |
| 578 extern const char kGoogleServicesUsername[]; | 578 extern const char kGoogleServicesUsername[]; |
| 579 extern const char kGoogleServicesUsernamePattern[]; | 579 extern const char kGoogleServicesUsernamePattern[]; |
| 580 extern const char kSyncUsingSecondaryPassphrase[]; | 580 extern const char kSyncUsingSecondaryPassphrase[]; |
| 581 extern const char kSyncEncryptionBootstrapToken[]; | 581 extern const char kSyncEncryptionBootstrapToken[]; |
| 582 extern const char kSyncKeystoreEncryptionBootstrapToken[]; |
| 582 extern const char kSyncAcknowledgedSyncTypes[]; | 583 extern const char kSyncAcknowledgedSyncTypes[]; |
| 583 extern const char kSyncMaxInvalidationVersions[]; | 584 extern const char kSyncMaxInvalidationVersions[]; |
| 584 extern const char kSyncSessionsGUID[]; | 585 extern const char kSyncSessionsGUID[]; |
| 585 | 586 |
| 586 extern const char kInvalidatorInvalidationState[]; | 587 extern const char kInvalidatorInvalidationState[]; |
| 587 | 588 |
| 588 extern const char kSyncPromoStartupCount[]; | 589 extern const char kSyncPromoStartupCount[]; |
| 589 extern const char kSyncPromoViewCount[]; | 590 extern const char kSyncPromoViewCount[]; |
| 590 extern const char kSyncPromoUserSkipped[]; | 591 extern const char kSyncPromoUserSkipped[]; |
| 591 extern const char kSyncPromoShowOnFirstRunAllowed[]; | 592 extern const char kSyncPromoShowOnFirstRunAllowed[]; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 #endif | 727 #endif |
| 727 | 728 |
| 728 extern const char kInManagedMode[]; | 729 extern const char kInManagedMode[]; |
| 729 | 730 |
| 730 extern const char kNetworkProfileWarningsLeft[]; | 731 extern const char kNetworkProfileWarningsLeft[]; |
| 731 extern const char kNetworkProfileLastWarningTime[]; | 732 extern const char kNetworkProfileLastWarningTime[]; |
| 732 | 733 |
| 733 } // namespace prefs | 734 } // namespace prefs |
| 734 | 735 |
| 735 #endif // CHROME_COMMON_PREF_NAMES_H_ | 736 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |