| 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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 extern const char kManagedNotificationsAllowedForUrls[]; | 621 extern const char kManagedNotificationsAllowedForUrls[]; |
| 622 extern const char kManagedNotificationsBlockedForUrls[]; | 622 extern const char kManagedNotificationsBlockedForUrls[]; |
| 623 extern const char kManagedAutoSelectCertificateForUrls[]; | 623 extern const char kManagedAutoSelectCertificateForUrls[]; |
| 624 | 624 |
| 625 #if defined(OS_CHROMEOS) | 625 #if defined(OS_CHROMEOS) |
| 626 extern const char kSignedSettingsCache[]; | 626 extern const char kSignedSettingsCache[]; |
| 627 extern const char kHardwareKeyboardLayout[]; | 627 extern const char kHardwareKeyboardLayout[]; |
| 628 extern const char kCarrierDealPromoShown[]; | 628 extern const char kCarrierDealPromoShown[]; |
| 629 extern const char kShouldAutoEnroll[]; | 629 extern const char kShouldAutoEnroll[]; |
| 630 extern const char kAutoEnrollmentPowerLimit[]; | 630 extern const char kAutoEnrollmentPowerLimit[]; |
| 631 extern const char kReportDeviceVersionInfo[]; | |
| 632 extern const char kReportDeviceActivityTimes[]; | |
| 633 extern const char kDeviceActivityTimes[]; | 631 extern const char kDeviceActivityTimes[]; |
| 632 extern const char kDeviceLocation[]; |
| 634 extern const char kSyncSpareBootstrapToken[]; | 633 extern const char kSyncSpareBootstrapToken[]; |
| 635 #endif | 634 #endif |
| 636 | 635 |
| 637 extern const char kClearPluginLSODataEnabled[]; | 636 extern const char kClearPluginLSODataEnabled[]; |
| 638 extern const char kDiskCacheDir[]; | 637 extern const char kDiskCacheDir[]; |
| 639 extern const char kDiskCacheSize[]; | 638 extern const char kDiskCacheSize[]; |
| 640 extern const char kMediaCacheSize[]; | 639 extern const char kMediaCacheSize[]; |
| 641 | 640 |
| 642 extern const char kChromeOsReleaseChannel[]; | 641 extern const char kChromeOsReleaseChannel[]; |
| 643 | 642 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 #endif | 693 #endif |
| 695 | 694 |
| 696 extern const char kInManagedMode[]; | 695 extern const char kInManagedMode[]; |
| 697 | 696 |
| 698 extern const char kNetworkProfileWarningsLeft[]; | 697 extern const char kNetworkProfileWarningsLeft[]; |
| 699 extern const char kNetworkProfileLastWarningTime[]; | 698 extern const char kNetworkProfileLastWarningTime[]; |
| 700 | 699 |
| 701 } // namespace prefs | 700 } // namespace prefs |
| 702 | 701 |
| 703 #endif // CHROME_COMMON_PREF_NAMES_H_ | 702 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |