| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_PREF_FONT_WEBKIT_NAMES_H__ |
| 6 #define CHROME_COMMON_PREF_FONT_WEBKIT_NAMES_H__ |
| 7 |
| 8 // This file defines the font pref names that are used in conjunction with |
| 9 // pref_font_script_names-inl.h. |
| 10 |
| 11 #define WEBKIT_WEBPREFS_FONTS_CURSIVE "webkit.webprefs.fonts.cursive" |
| 12 #define WEBKIT_WEBPREFS_FONTS_FANTASY "webkit.webprefs.fonts.fantasy" |
| 13 #define WEBKIT_WEBPREFS_FONTS_FIXED "webkit.webprefs.fonts.fixed" |
| 14 #define WEBKIT_WEBPREFS_FONTS_PICTOGRAPH "webkit.webprefs.fonts.pictograph" |
| 15 #define WEBKIT_WEBPREFS_FONTS_SANSERIF "webkit.webprefs.fonts.sansserif" |
| 16 #define WEBKIT_WEBPREFS_FONTS_SERIF "webkit.webprefs.fonts.serif" |
| 17 #define WEBKIT_WEBPREFS_FONTS_STANDARD "webkit.webprefs.fonts.standard" |
| 18 |
| 19 #endif // CHROME_COMMON_PREF_FONT_WEBKIT_NAMES_H__ |
| OLD | NEW |