| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 extern const char kWebKitDefaultFixedFontSize[]; | 119 extern const char kWebKitDefaultFixedFontSize[]; |
| 120 extern const char kWebKitMinimumFontSize[]; | 120 extern const char kWebKitMinimumFontSize[]; |
| 121 extern const char kWebKitMinimumLogicalFontSize[]; | 121 extern const char kWebKitMinimumLogicalFontSize[]; |
| 122 extern const char kWebKitJavascriptEnabled[]; | 122 extern const char kWebKitJavascriptEnabled[]; |
| 123 extern const char kWebKitWebSecurityEnabled[]; | 123 extern const char kWebKitWebSecurityEnabled[]; |
| 124 extern const char kWebKitJavascriptCanOpenWindowsAutomatically[]; | 124 extern const char kWebKitJavascriptCanOpenWindowsAutomatically[]; |
| 125 extern const char kWebKitLoadsImagesAutomatically[]; | 125 extern const char kWebKitLoadsImagesAutomatically[]; |
| 126 extern const char kWebKitPluginsEnabled[]; | 126 extern const char kWebKitPluginsEnabled[]; |
| 127 extern const char kWebKitDomPasteEnabled[]; | 127 extern const char kWebKitDomPasteEnabled[]; |
| 128 extern const char kWebKitShrinksStandaloneImagesToFit[]; | 128 extern const char kWebKitShrinksStandaloneImagesToFit[]; |
| 129 extern const char kWebKitInspectorSettings[]; | |
| 130 extern const char kWebKitUsesUniversalDetector[]; | 129 extern const char kWebKitUsesUniversalDetector[]; |
| 131 extern const char kWebKitTextAreasAreResizable[]; | 130 extern const char kWebKitTextAreasAreResizable[]; |
| 132 extern const char kWebKitJavaEnabled[]; | 131 extern const char kWebKitJavaEnabled[]; |
| 133 extern const char kWebkitTabsToLinks[]; | 132 extern const char kWebkitTabsToLinks[]; |
| 134 extern const char kWebKitAllowDisplayingInsecureContent[]; | 133 extern const char kWebKitAllowDisplayingInsecureContent[]; |
| 135 extern const char kWebKitAllowRunningInsecureContent[]; | 134 extern const char kWebKitAllowRunningInsecureContent[]; |
| 136 #if defined(OS_ANDROID) | 135 #if defined(OS_ANDROID) |
| 137 extern const char kWebKitFontScaleFactor[]; | 136 extern const char kWebKitFontScaleFactor[]; |
| 138 extern const char kWebKitForceEnableZoom[]; | 137 extern const char kWebKitForceEnableZoom[]; |
| 139 extern const char kWebKitPasswordEchoEnabled[]; | 138 extern const char kWebKitPasswordEchoEnabled[]; |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 #if defined(OS_ANDROID) | 820 #if defined(OS_ANDROID) |
| 822 extern const char kPartnerBookmarkMappings[]; | 821 extern const char kPartnerBookmarkMappings[]; |
| 823 #endif | 822 #endif |
| 824 | 823 |
| 825 extern const char kQuickCheckEnabled[]; | 824 extern const char kQuickCheckEnabled[]; |
| 826 extern const char kBrowserGuestModeEnabled[]; | 825 extern const char kBrowserGuestModeEnabled[]; |
| 827 | 826 |
| 828 } // namespace prefs | 827 } // namespace prefs |
| 829 | 828 |
| 830 #endif // CHROME_COMMON_PREF_NAMES_H_ | 829 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |