| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 | 662 |
| 663 #if defined(OS_CHROMEOS) | 663 #if defined(OS_CHROMEOS) |
| 664 extern const char kSignedSettingsCache[]; | 664 extern const char kSignedSettingsCache[]; |
| 665 extern const char kHardwareKeyboardLayout[]; | 665 extern const char kHardwareKeyboardLayout[]; |
| 666 extern const char kCarrierDealPromoShown[]; | 666 extern const char kCarrierDealPromoShown[]; |
| 667 extern const char kShouldAutoEnroll[]; | 667 extern const char kShouldAutoEnroll[]; |
| 668 extern const char kAutoEnrollmentPowerLimit[]; | 668 extern const char kAutoEnrollmentPowerLimit[]; |
| 669 extern const char kDeviceActivityTimes[]; | 669 extern const char kDeviceActivityTimes[]; |
| 670 extern const char kDeviceLocation[]; | 670 extern const char kDeviceLocation[]; |
| 671 extern const char kSyncSpareBootstrapToken[]; | 671 extern const char kSyncSpareBootstrapToken[]; |
| 672 extern const char kExternalStorageDisabled[]; |
| 672 #endif | 673 #endif |
| 673 | 674 |
| 674 extern const char kClearPluginLSODataEnabled[]; | 675 extern const char kClearPluginLSODataEnabled[]; |
| 675 extern const char kPepperFlashSettingsEnabled[]; | 676 extern const char kPepperFlashSettingsEnabled[]; |
| 676 extern const char kDiskCacheDir[]; | 677 extern const char kDiskCacheDir[]; |
| 677 extern const char kDiskCacheSize[]; | 678 extern const char kDiskCacheSize[]; |
| 678 extern const char kMediaCacheSize[]; | 679 extern const char kMediaCacheSize[]; |
| 679 | 680 |
| 680 extern const char kChromeOsReleaseChannel[]; | 681 extern const char kChromeOsReleaseChannel[]; |
| 681 | 682 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 extern const char kNetworkProfileWarningsLeft[]; | 744 extern const char kNetworkProfileWarningsLeft[]; |
| 744 extern const char kNetworkProfileLastWarningTime[]; | 745 extern const char kNetworkProfileLastWarningTime[]; |
| 745 | 746 |
| 746 #if defined(OS_MACOSX) | 747 #if defined(OS_MACOSX) |
| 747 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 748 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
| 748 #endif // defined(OS_MACOSX) | 749 #endif // defined(OS_MACOSX) |
| 749 | 750 |
| 750 } // namespace prefs | 751 } // namespace prefs |
| 751 | 752 |
| 752 #endif // CHROME_COMMON_PREF_NAMES_H_ | 753 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |