| 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 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 extern const char kClearPluginLSODataEnabled[]; | 721 extern const char kClearPluginLSODataEnabled[]; |
| 722 extern const char kPepperFlashSettingsEnabled[]; | 722 extern const char kPepperFlashSettingsEnabled[]; |
| 723 extern const char kDiskCacheDir[]; | 723 extern const char kDiskCacheDir[]; |
| 724 extern const char kDiskCacheSize[]; | 724 extern const char kDiskCacheSize[]; |
| 725 extern const char kMediaCacheSize[]; | 725 extern const char kMediaCacheSize[]; |
| 726 | 726 |
| 727 extern const char kChromeOsReleaseChannel[]; | 727 extern const char kChromeOsReleaseChannel[]; |
| 728 | 728 |
| 729 extern const char kPerformanceTracingEnabled[]; | 729 extern const char kPerformanceTracingEnabled[]; |
| 730 | 730 |
| 731 extern const char kTabStripLayoutType[]; | 731 extern const char kTabStripStackedLayout[]; |
| 732 | 732 |
| 733 extern const char kRegisteredBackgroundContents[]; | 733 extern const char kRegisteredBackgroundContents[]; |
| 734 | 734 |
| 735 extern const char kShownAutoLaunchInfobar[]; | 735 extern const char kShownAutoLaunchInfobar[]; |
| 736 | 736 |
| 737 extern const char kAuthSchemes[]; | 737 extern const char kAuthSchemes[]; |
| 738 extern const char kDisableAuthNegotiateCnameLookup[]; | 738 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 739 extern const char kEnableAuthNegotiatePort[]; | 739 extern const char kEnableAuthNegotiatePort[]; |
| 740 extern const char kAuthServerWhitelist[]; | 740 extern const char kAuthServerWhitelist[]; |
| 741 extern const char kAuthNegotiateDelegateWhitelist[]; | 741 extern const char kAuthNegotiateDelegateWhitelist[]; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 | 875 |
| 876 #if defined(OS_ANDROID) | 876 #if defined(OS_ANDROID) |
| 877 extern const char kPartnerBookmarkMappings[]; | 877 extern const char kPartnerBookmarkMappings[]; |
| 878 #endif | 878 #endif |
| 879 | 879 |
| 880 extern const char kQuickCheckEnabled[]; | 880 extern const char kQuickCheckEnabled[]; |
| 881 | 881 |
| 882 } // namespace prefs | 882 } // namespace prefs |
| 883 | 883 |
| 884 #endif // CHROME_COMMON_PREF_NAMES_H_ | 884 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |