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 #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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 const char kWebKitStandardFontFamilyKorean[] = | 240 const char kWebKitStandardFontFamilyKorean[] = |
241 "webkit.webprefs.fonts.standard.Hang"; | 241 "webkit.webprefs.fonts.standard.Hang"; |
242 const char kWebKitFixedFontFamilyKorean[] = | 242 const char kWebKitFixedFontFamilyKorean[] = |
243 "webkit.webprefs.fonts.fixed.Hang"; | 243 "webkit.webprefs.fonts.fixed.Hang"; |
244 const char kWebKitSerifFontFamilyKorean[] = | 244 const char kWebKitSerifFontFamilyKorean[] = |
245 "webkit.webprefs.fonts.serif.Hang"; | 245 "webkit.webprefs.fonts.serif.Hang"; |
246 const char kWebKitSansSerifFontFamilyKorean[] = | 246 const char kWebKitSansSerifFontFamilyKorean[] = |
247 "webkit.webprefs.fonts.sansserif.Hang"; | 247 "webkit.webprefs.fonts.sansserif.Hang"; |
248 const char kWebKitCursiveFontFamilyKorean[] = | 248 const char kWebKitCursiveFontFamilyKorean[] = |
249 "webkit.webprefs.fonts.cursive.Hang"; | 249 "webkit.webprefs.fonts.cursive.Hang"; |
250 const char kWebKitStandardFontFamilyLatin[] = | |
251 "webkit.webprefs.fonts.standard.Latn"; | |
252 const char kWebKitFixedFontFamilyLatin[] = | |
253 "webkit.webprefs.fonts.fixed.Latn"; | |
254 const char kWebKitSerifFontFamilyLatin[] = | |
255 "webkit.webprefs.fonts.serif.Latn"; | |
256 const char kWebKitSansSerifFontFamilyLatin[] = | |
257 "webkit.webprefs.fonts.sansserif.Latn"; | |
258 const char kWebKitCursiveFontFamilyLatin[] = | |
259 "webkit.webprefs.fonts.cursive.Latn"; | |
260 const char kWebKitFantasyFontFamilyLatin[] = | |
261 "webkit.webprefs.fonts.fantasy.Latn"; | |
262 const char kWebKitPictographFontFamilyLatin[] = | |
263 "webkit.webprefs.fonts.pictograph.Latn"; | |
264 const char kWebKitStandardFontFamilySimplifiedHan[] = | 250 const char kWebKitStandardFontFamilySimplifiedHan[] = |
265 "webkit.webprefs.fonts.standard.Hans"; | 251 "webkit.webprefs.fonts.standard.Hans"; |
266 const char kWebKitFixedFontFamilySimplifiedHan[] = | 252 const char kWebKitFixedFontFamilySimplifiedHan[] = |
267 "webkit.webprefs.fonts.fixed.Hans"; | 253 "webkit.webprefs.fonts.fixed.Hans"; |
268 const char kWebKitSerifFontFamilySimplifiedHan[] = | 254 const char kWebKitSerifFontFamilySimplifiedHan[] = |
269 "webkit.webprefs.fonts.serif.Hans"; | 255 "webkit.webprefs.fonts.serif.Hans"; |
270 const char kWebKitSansSerifFontFamilySimplifiedHan[] = | 256 const char kWebKitSansSerifFontFamilySimplifiedHan[] = |
271 "webkit.webprefs.fonts.sansserif.Hans"; | 257 "webkit.webprefs.fonts.sansserif.Hans"; |
272 const char kWebKitStandardFontFamilyTraditionalHan[] = | 258 const char kWebKitStandardFontFamilyTraditionalHan[] = |
273 "webkit.webprefs.fonts.standard.Hant"; | 259 "webkit.webprefs.fonts.standard.Hant"; |
(...skipping 2176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2450 // ping and the time of the last ping. | 2436 // ping and the time of the last ping. |
2451 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2437 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2452 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2438 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2453 | 2439 |
2454 // A string pref for storing the salt used to compute the pepper device ID. | 2440 // A string pref for storing the salt used to compute the pepper device ID. |
2455 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2441 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2456 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2442 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2457 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2443 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2458 | 2444 |
2459 } // namespace prefs | 2445 } // namespace prefs |
OLD | NEW |