| 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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 extern const char kSyncSearchEngines[]; | 567 extern const char kSyncSearchEngines[]; |
| 568 extern const char kSyncSessions[]; | 568 extern const char kSyncSessions[]; |
| 569 extern const char kSyncSuppressStart[]; | 569 extern const char kSyncSuppressStart[]; |
| 570 extern const char kGoogleServicesUsername[]; | 570 extern const char kGoogleServicesUsername[]; |
| 571 extern const char kSyncUsingSecondaryPassphrase[]; | 571 extern const char kSyncUsingSecondaryPassphrase[]; |
| 572 extern const char kSyncEncryptionBootstrapToken[]; | 572 extern const char kSyncEncryptionBootstrapToken[]; |
| 573 extern const char kSyncAcknowledgedSyncTypes[]; | 573 extern const char kSyncAcknowledgedSyncTypes[]; |
| 574 extern const char kSyncMaxInvalidationVersions[]; | 574 extern const char kSyncMaxInvalidationVersions[]; |
| 575 extern const char kSyncSessionsGUID[]; | 575 extern const char kSyncSessionsGUID[]; |
| 576 | 576 |
| 577 extern const char kInvalidatorInvalidationState[]; |
| 578 |
| 577 extern const char kSyncPromoStartupCount[]; | 579 extern const char kSyncPromoStartupCount[]; |
| 578 extern const char kSyncPromoViewCount[]; | 580 extern const char kSyncPromoViewCount[]; |
| 579 extern const char kSyncPromoUserSkipped[]; | 581 extern const char kSyncPromoUserSkipped[]; |
| 580 extern const char kSyncPromoShowOnFirstRunAllowed[]; | 582 extern const char kSyncPromoShowOnFirstRunAllowed[]; |
| 581 extern const char kSyncPromoShowNTPBubble[]; | 583 extern const char kSyncPromoShowNTPBubble[]; |
| 582 | 584 |
| 583 extern const char kProfileGAIAInfoUpdateTime[]; | 585 extern const char kProfileGAIAInfoUpdateTime[]; |
| 584 extern const char kProfileGAIAInfoPictureURL[]; | 586 extern const char kProfileGAIAInfoPictureURL[]; |
| 585 | 587 |
| 586 extern const char kWebAppCreateOnDesktop[]; | 588 extern const char kWebAppCreateOnDesktop[]; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 #endif | 715 #endif |
| 714 | 716 |
| 715 extern const char kInManagedMode[]; | 717 extern const char kInManagedMode[]; |
| 716 | 718 |
| 717 extern const char kNetworkProfileWarningsLeft[]; | 719 extern const char kNetworkProfileWarningsLeft[]; |
| 718 extern const char kNetworkProfileLastWarningTime[]; | 720 extern const char kNetworkProfileLastWarningTime[]; |
| 719 | 721 |
| 720 } // namespace prefs | 722 } // namespace prefs |
| 721 | 723 |
| 722 #endif // CHROME_COMMON_PREF_NAMES_H_ | 724 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |