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 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 extern const char kManagedJavaScriptBlockedForUrls[]; | 579 extern const char kManagedJavaScriptBlockedForUrls[]; |
580 extern const char kManagedPluginsAllowedForUrls[]; | 580 extern const char kManagedPluginsAllowedForUrls[]; |
581 extern const char kManagedPluginsBlockedForUrls[]; | 581 extern const char kManagedPluginsBlockedForUrls[]; |
582 extern const char kManagedPopupsAllowedForUrls[]; | 582 extern const char kManagedPopupsAllowedForUrls[]; |
583 extern const char kManagedPopupsBlockedForUrls[]; | 583 extern const char kManagedPopupsBlockedForUrls[]; |
584 extern const char kManagedNotificationsAllowedForUrls[]; | 584 extern const char kManagedNotificationsAllowedForUrls[]; |
585 extern const char kManagedNotificationsBlockedForUrls[]; | 585 extern const char kManagedNotificationsBlockedForUrls[]; |
586 extern const char kManagedAutoSelectCertificateForUrls[]; | 586 extern const char kManagedAutoSelectCertificateForUrls[]; |
587 | 587 |
588 #if defined(OS_CHROMEOS) | 588 #if defined(OS_CHROMEOS) |
589 extern const char kSignedSettingsTempStorage[]; | 589 extern const char kSignedSettingsCache[]; |
590 extern const char kHardwareKeyboardLayout[]; | 590 extern const char kHardwareKeyboardLayout[]; |
591 extern const char kCarrierDealPromoShown[]; | 591 extern const char kCarrierDealPromoShown[]; |
592 #endif | 592 #endif |
593 | 593 |
594 extern const char kClearPluginLSODataEnabled[]; | 594 extern const char kClearPluginLSODataEnabled[]; |
595 extern const char kDiskCacheDir[]; | 595 extern const char kDiskCacheDir[]; |
596 extern const char kDiskCacheSize[]; | 596 extern const char kDiskCacheSize[]; |
597 extern const char kMediaCacheSize[]; | 597 extern const char kMediaCacheSize[]; |
598 | 598 |
599 extern const char kChromeOsReleaseChannel[]; | 599 extern const char kChromeOsReleaseChannel[]; |
(...skipping 17 matching lines...) Expand all Loading... |
617 | 617 |
618 extern const char kDevicePolicyRefreshRate[]; | 618 extern const char kDevicePolicyRefreshRate[]; |
619 extern const char kUserPolicyRefreshRate[]; | 619 extern const char kUserPolicyRefreshRate[]; |
620 | 620 |
621 extern const char kRecoveryComponentVersion[]; | 621 extern const char kRecoveryComponentVersion[]; |
622 extern const char kComponentUpdaterState[]; | 622 extern const char kComponentUpdaterState[]; |
623 | 623 |
624 } // namespace prefs | 624 } // namespace prefs |
625 | 625 |
626 #endif // CHROME_COMMON_PREF_NAMES_H_ | 626 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |