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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 extern const char kManagedAutoSelectCertificateForUrls[]; | 578 extern const char kManagedAutoSelectCertificateForUrls[]; |
579 | 579 |
580 #if defined(OS_CHROMEOS) | 580 #if defined(OS_CHROMEOS) |
581 extern const char kSignedSettingsTempStorage[]; | 581 extern const char kSignedSettingsTempStorage[]; |
582 extern const char kHardwareKeyboardLayout[]; | 582 extern const char kHardwareKeyboardLayout[]; |
583 extern const char kCarrierDealPromoShown[]; | 583 extern const char kCarrierDealPromoShown[]; |
584 #endif | 584 #endif |
585 | 585 |
586 extern const char kClearPluginLSODataEnabled[]; | 586 extern const char kClearPluginLSODataEnabled[]; |
587 extern const char kDiskCacheDir[]; | 587 extern const char kDiskCacheDir[]; |
| 588 extern const char kDiskCacheSize[]; |
| 589 extern const char kMediaCacheSize[]; |
588 | 590 |
589 extern const char kChromeOsReleaseChannel[]; | 591 extern const char kChromeOsReleaseChannel[]; |
590 | 592 |
591 extern const char kRegisteredBackgroundContents[]; | 593 extern const char kRegisteredBackgroundContents[]; |
592 | 594 |
593 extern const char kAuthSchemes[]; | 595 extern const char kAuthSchemes[]; |
594 extern const char kDisableAuthNegotiateCnameLookup[]; | 596 extern const char kDisableAuthNegotiateCnameLookup[]; |
595 extern const char kEnableAuthNegotiatePort[]; | 597 extern const char kEnableAuthNegotiatePort[]; |
596 extern const char kAuthServerWhitelist[]; | 598 extern const char kAuthServerWhitelist[]; |
597 extern const char kAuthNegotiateDelegateWhitelist[]; | 599 extern const char kAuthNegotiateDelegateWhitelist[]; |
598 extern const char kGSSAPILibraryName[]; | 600 extern const char kGSSAPILibraryName[]; |
599 extern const char kAllowCrossOriginAuthPrompt[]; | 601 extern const char kAllowCrossOriginAuthPrompt[]; |
600 | 602 |
601 extern const char kRegisteredProtocolHandlers[]; | 603 extern const char kRegisteredProtocolHandlers[]; |
602 extern const char kIgnoredProtocolHandlers[]; | 604 extern const char kIgnoredProtocolHandlers[]; |
603 extern const char kCustomHandlersEnabled[]; | 605 extern const char kCustomHandlersEnabled[]; |
604 | 606 |
605 extern const char kUserCreatedLoginItem[]; | 607 extern const char kUserCreatedLoginItem[]; |
606 extern const char kBackgroundModeEnabled[]; | 608 extern const char kBackgroundModeEnabled[]; |
607 | 609 |
608 extern const char kDevicePolicyRefreshRate[]; | 610 extern const char kDevicePolicyRefreshRate[]; |
609 extern const char kUserPolicyRefreshRate[]; | 611 extern const char kUserPolicyRefreshRate[]; |
610 | 612 |
611 extern const char kRecoveryComponentVersion[]; | 613 extern const char kRecoveryComponentVersion[]; |
612 extern const char kComponentUpdaterState[]; | 614 extern const char kComponentUpdaterState[]; |
613 | 615 |
614 } // namespace prefs | 616 } // namespace prefs |
615 | 617 |
616 #endif // CHROME_COMMON_PREF_NAMES_H_ | 618 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |