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