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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 const char kWebKitSansSerifFontFamilyJapanese[] = | 148 const char kWebKitSansSerifFontFamilyJapanese[] = |
149 "webkit.webprefs.fonts.sansserif.Hrkt"; | 149 "webkit.webprefs.fonts.sansserif.Hrkt"; |
150 const char kWebKitStandardFontFamilyKorean[] = | 150 const char kWebKitStandardFontFamilyKorean[] = |
151 "webkit.webprefs.fonts.standard.Hang"; | 151 "webkit.webprefs.fonts.standard.Hang"; |
152 const char kWebKitFixedFontFamilyKorean[] = | 152 const char kWebKitFixedFontFamilyKorean[] = |
153 "webkit.webprefs.fonts.fixed.Hang"; | 153 "webkit.webprefs.fonts.fixed.Hang"; |
154 const char kWebKitSerifFontFamilyKorean[] = | 154 const char kWebKitSerifFontFamilyKorean[] = |
155 "webkit.webprefs.fonts.serif.Hang"; | 155 "webkit.webprefs.fonts.serif.Hang"; |
156 const char kWebKitSansSerifFontFamilyKorean[] = | 156 const char kWebKitSansSerifFontFamilyKorean[] = |
157 "webkit.webprefs.fonts.sansserif.Hang"; | 157 "webkit.webprefs.fonts.sansserif.Hang"; |
| 158 const char kWebKitCursiveFontFamilyKorean[] = |
| 159 "webkit.webprefs.fonts.cursive.Hang"; |
158 const char kWebKitStandardFontFamilySimplifiedHan[] = | 160 const char kWebKitStandardFontFamilySimplifiedHan[] = |
159 "webkit.webprefs.fonts.standard.Hans"; | 161 "webkit.webprefs.fonts.standard.Hans"; |
160 const char kWebKitFixedFontFamilySimplifiedHan[] = | 162 const char kWebKitFixedFontFamilySimplifiedHan[] = |
161 "webkit.webprefs.fonts.fixed.Hans"; | 163 "webkit.webprefs.fonts.fixed.Hans"; |
162 const char kWebKitSerifFontFamilySimplifiedHan[] = | 164 const char kWebKitSerifFontFamilySimplifiedHan[] = |
163 "webkit.webprefs.fonts.serif.Hans"; | 165 "webkit.webprefs.fonts.serif.Hans"; |
164 const char kWebKitSansSerifFontFamilySimplifiedHan[] = | 166 const char kWebKitSansSerifFontFamilySimplifiedHan[] = |
165 "webkit.webprefs.fonts.sansserif.Hans"; | 167 "webkit.webprefs.fonts.sansserif.Hans"; |
166 const char kWebKitStandardFontFamilyTraditionalHan[] = | 168 const char kWebKitStandardFontFamilyTraditionalHan[] = |
167 "webkit.webprefs.fonts.standard.Hant"; | 169 "webkit.webprefs.fonts.standard.Hant"; |
(...skipping 1406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1574 // specified. | 1576 // specified. |
1575 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1577 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1576 | 1578 |
1577 // Integers that specify the policy refresh rate for device- and user-policy in | 1579 // Integers that specify the policy refresh rate for device- and user-policy in |
1578 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1580 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1579 // by the cloud policy subsystem. | 1581 // by the cloud policy subsystem. |
1580 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1582 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1581 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1583 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1582 | 1584 |
1583 } // namespace prefs | 1585 } // namespace prefs |
OLD | NEW |