| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 extern const char kWebKitMinimumFontSize[]; | 129 extern const char kWebKitMinimumFontSize[]; |
| 130 extern const char kWebKitMinimumLogicalFontSize[]; | 130 extern const char kWebKitMinimumLogicalFontSize[]; |
| 131 extern const char kWebKitJavascriptEnabled[]; | 131 extern const char kWebKitJavascriptEnabled[]; |
| 132 extern const char kWebKitWebSecurityEnabled[]; | 132 extern const char kWebKitWebSecurityEnabled[]; |
| 133 extern const char kWebKitJavascriptCanOpenWindowsAutomatically[]; | 133 extern const char kWebKitJavascriptCanOpenWindowsAutomatically[]; |
| 134 extern const char kWebKitLoadsImagesAutomatically[]; | 134 extern const char kWebKitLoadsImagesAutomatically[]; |
| 135 extern const char kWebKitPluginsEnabled[]; | 135 extern const char kWebKitPluginsEnabled[]; |
| 136 extern const char kWebKitDomPasteEnabled[]; | 136 extern const char kWebKitDomPasteEnabled[]; |
| 137 extern const char kWebKitUsesUniversalDetector[]; | 137 extern const char kWebKitUsesUniversalDetector[]; |
| 138 extern const char kWebKitTextAreasAreResizable[]; | 138 extern const char kWebKitTextAreasAreResizable[]; |
| 139 extern const char kWebKitJavaEnabled[]; | |
| 140 extern const char kWebkitTabsToLinks[]; | 139 extern const char kWebkitTabsToLinks[]; |
| 141 extern const char kWebKitAllowDisplayingInsecureContent[]; | 140 extern const char kWebKitAllowDisplayingInsecureContent[]; |
| 142 extern const char kWebKitAllowRunningInsecureContent[]; | 141 extern const char kWebKitAllowRunningInsecureContent[]; |
| 143 #if defined(OS_ANDROID) | 142 #if defined(OS_ANDROID) |
| 144 extern const char kWebKitFontScaleFactor[]; | 143 extern const char kWebKitFontScaleFactor[]; |
| 145 extern const char kWebKitForceEnableZoom[]; | 144 extern const char kWebKitForceEnableZoom[]; |
| 146 extern const char kWebKitPasswordEchoEnabled[]; | 145 extern const char kWebKitPasswordEchoEnabled[]; |
| 147 #endif | 146 #endif |
| 148 extern const char kSafeBrowsingEnabled[]; | 147 extern const char kSafeBrowsingEnabled[]; |
| 149 extern const char kSafeBrowsingExtendedReportingEnabled[]; | 148 extern const char kSafeBrowsingExtendedReportingEnabled[]; |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 | 809 |
| 811 #if defined(ENABLE_EXTENSIONS) | 810 #if defined(ENABLE_EXTENSIONS) |
| 812 extern const char kAnimationPolicy[]; | 811 extern const char kAnimationPolicy[]; |
| 813 #endif | 812 #endif |
| 814 | 813 |
| 815 extern const char kBackgroundTracingLastUpload[]; | 814 extern const char kBackgroundTracingLastUpload[]; |
| 816 | 815 |
| 817 } // namespace prefs | 816 } // namespace prefs |
| 818 | 817 |
| 819 #endif // CHROME_COMMON_PREF_NAMES_H_ | 818 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |