OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 extern const char kManagedJavaScriptBlockedForUrls[]; | 582 extern const char kManagedJavaScriptBlockedForUrls[]; |
583 extern const char kManagedPluginsAllowedForUrls[]; | 583 extern const char kManagedPluginsAllowedForUrls[]; |
584 extern const char kManagedPluginsBlockedForUrls[]; | 584 extern const char kManagedPluginsBlockedForUrls[]; |
585 extern const char kManagedPopupsAllowedForUrls[]; | 585 extern const char kManagedPopupsAllowedForUrls[]; |
586 extern const char kManagedPopupsBlockedForUrls[]; | 586 extern const char kManagedPopupsBlockedForUrls[]; |
587 extern const char kManagedNotificationsAllowedForUrls[]; | 587 extern const char kManagedNotificationsAllowedForUrls[]; |
588 extern const char kManagedNotificationsBlockedForUrls[]; | 588 extern const char kManagedNotificationsBlockedForUrls[]; |
589 extern const char kManagedAutoSelectCertificateForUrls[]; | 589 extern const char kManagedAutoSelectCertificateForUrls[]; |
590 | 590 |
591 #if defined(OS_CHROMEOS) | 591 #if defined(OS_CHROMEOS) |
592 extern const char kSignedSettingsTempStorage[]; | 592 extern const char kSignedSettingsCache[]; |
593 extern const char kHardwareKeyboardLayout[]; | 593 extern const char kHardwareKeyboardLayout[]; |
594 extern const char kCarrierDealPromoShown[]; | 594 extern const char kCarrierDealPromoShown[]; |
595 #endif | 595 #endif |
596 | 596 |
597 extern const char kClearPluginLSODataEnabled[]; | 597 extern const char kClearPluginLSODataEnabled[]; |
598 extern const char kDiskCacheDir[]; | 598 extern const char kDiskCacheDir[]; |
599 extern const char kDiskCacheSize[]; | 599 extern const char kDiskCacheSize[]; |
600 extern const char kMediaCacheSize[]; | 600 extern const char kMediaCacheSize[]; |
601 | 601 |
602 extern const char kChromeOsReleaseChannel[]; | 602 extern const char kChromeOsReleaseChannel[]; |
(...skipping 17 matching lines...) Expand all Loading... |
620 | 620 |
621 extern const char kDevicePolicyRefreshRate[]; | 621 extern const char kDevicePolicyRefreshRate[]; |
622 extern const char kUserPolicyRefreshRate[]; | 622 extern const char kUserPolicyRefreshRate[]; |
623 | 623 |
624 extern const char kRecoveryComponentVersion[]; | 624 extern const char kRecoveryComponentVersion[]; |
625 extern const char kComponentUpdaterState[]; | 625 extern const char kComponentUpdaterState[]; |
626 | 626 |
627 } // namespace prefs | 627 } // namespace prefs |
628 | 628 |
629 #endif // CHROME_COMMON_PREF_NAMES_H_ | 629 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |