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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 extern const char kWebKitStandardFontFamilyTraditionalHan[]; | 81 extern const char kWebKitStandardFontFamilyTraditionalHan[]; |
82 extern const char kWebKitFixedFontFamilyTraditionalHan[]; | 82 extern const char kWebKitFixedFontFamilyTraditionalHan[]; |
83 extern const char kWebKitSerifFontFamilyTraditionalHan[]; | 83 extern const char kWebKitSerifFontFamilyTraditionalHan[]; |
84 extern const char kWebKitSansSerifFontFamilyTraditionalHan[]; | 84 extern const char kWebKitSansSerifFontFamilyTraditionalHan[]; |
85 | 85 |
86 extern const char kWebKitDefaultFontSize[]; | 86 extern const char kWebKitDefaultFontSize[]; |
87 extern const char kWebKitDefaultFixedFontSize[]; | 87 extern const char kWebKitDefaultFixedFontSize[]; |
88 extern const char kWebKitMinimumFontSize[]; | 88 extern const char kWebKitMinimumFontSize[]; |
89 extern const char kWebKitMinimumLogicalFontSize[]; | 89 extern const char kWebKitMinimumLogicalFontSize[]; |
90 extern const char kWebKitJavascriptEnabled[]; | 90 extern const char kWebKitJavascriptEnabled[]; |
| 91 extern const char kWebKitGlobalJavascriptEnabled[]; |
91 extern const char kWebKitWebSecurityEnabled[]; | 92 extern const char kWebKitWebSecurityEnabled[]; |
92 extern const char kWebKitJavascriptCanOpenWindowsAutomatically[]; | 93 extern const char kWebKitJavascriptCanOpenWindowsAutomatically[]; |
93 extern const char kWebKitLoadsImagesAutomatically[]; | 94 extern const char kWebKitLoadsImagesAutomatically[]; |
94 extern const char kWebKitPluginsEnabled[]; | 95 extern const char kWebKitPluginsEnabled[]; |
95 extern const char kWebKitDomPasteEnabled[]; | 96 extern const char kWebKitDomPasteEnabled[]; |
96 extern const char kWebKitShrinksStandaloneImagesToFit[]; | 97 extern const char kWebKitShrinksStandaloneImagesToFit[]; |
97 extern const char kWebKitInspectorSettings[]; | 98 extern const char kWebKitInspectorSettings[]; |
98 extern const char kWebKitUsesUniversalDetector[]; | 99 extern const char kWebKitUsesUniversalDetector[]; |
99 extern const char kWebKitTextAreasAreResizable[]; | 100 extern const char kWebKitTextAreasAreResizable[]; |
100 extern const char kWebKitJavaEnabled[]; | 101 extern const char kWebKitJavaEnabled[]; |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 | 615 |
615 extern const char kDevicePolicyRefreshRate[]; | 616 extern const char kDevicePolicyRefreshRate[]; |
616 extern const char kUserPolicyRefreshRate[]; | 617 extern const char kUserPolicyRefreshRate[]; |
617 | 618 |
618 extern const char kRecoveryComponentVersion[]; | 619 extern const char kRecoveryComponentVersion[]; |
619 extern const char kComponentUpdaterState[]; | 620 extern const char kComponentUpdaterState[]; |
620 | 621 |
621 } // namespace prefs | 622 } // namespace prefs |
622 | 623 |
623 #endif // CHROME_COMMON_PREF_NAMES_H_ | 624 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |