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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 extern const char kWebKitFantasyFontFamily[]; | 49 extern const char kWebKitFantasyFontFamily[]; |
50 extern const char kWebKitStandardFontFamilyMap[]; | 50 extern const char kWebKitStandardFontFamilyMap[]; |
51 extern const char kWebKitFixedFontFamilyMap[]; | 51 extern const char kWebKitFixedFontFamilyMap[]; |
52 extern const char kWebKitSerifFontFamilyMap[]; | 52 extern const char kWebKitSerifFontFamilyMap[]; |
53 extern const char kWebKitSansSerifFontFamilyMap[]; | 53 extern const char kWebKitSansSerifFontFamilyMap[]; |
54 extern const char kWebKitCursiveFontFamilyMap[]; | 54 extern const char kWebKitCursiveFontFamilyMap[]; |
55 extern const char kWebKitFantasyFontFamilyMap[]; | 55 extern const char kWebKitFantasyFontFamilyMap[]; |
56 | 56 |
57 // ISO 15924 four-letter script codes that per-script font prefs are supported | 57 // ISO 15924 four-letter script codes that per-script font prefs are supported |
58 // for. | 58 // for. |
59 extern const char* kWebKitScriptsForFontFamilyMaps[]; | 59 extern const char* const kWebKitScriptsForFontFamilyMaps[]; |
60 extern const size_t kWebKitScriptsForFontFamilyMapsLength; | 60 extern const size_t kWebKitScriptsForFontFamilyMapsLength; |
61 | 61 |
62 // Per-script font prefs that have defaults, for easy reference when registering | 62 // Per-script font prefs that have defaults, for easy reference when registering |
63 // the defaults. | 63 // the defaults. |
64 extern const char kWebKitStandardFontFamilyArabic[]; | 64 extern const char kWebKitStandardFontFamilyArabic[]; |
65 extern const char kWebKitFixedFontFamilyArabic[]; | 65 extern const char kWebKitFixedFontFamilyArabic[]; |
66 extern const char kWebKitSerifFontFamilyArabic[]; | 66 extern const char kWebKitSerifFontFamilyArabic[]; |
67 extern const char kWebKitSansSerifFontFamilyArabic[]; | 67 extern const char kWebKitSansSerifFontFamilyArabic[]; |
68 extern const char kWebKitStandardFontFamilyJapanese[]; | 68 extern const char kWebKitStandardFontFamilyJapanese[]; |
69 extern const char kWebKitFixedFontFamilyJapanese[]; | 69 extern const char kWebKitFixedFontFamilyJapanese[]; |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 | 623 |
624 extern const char kDevicePolicyRefreshRate[]; | 624 extern const char kDevicePolicyRefreshRate[]; |
625 extern const char kUserPolicyRefreshRate[]; | 625 extern const char kUserPolicyRefreshRate[]; |
626 | 626 |
627 extern const char kRecoveryComponentVersion[]; | 627 extern const char kRecoveryComponentVersion[]; |
628 extern const char kComponentUpdaterState[]; | 628 extern const char kComponentUpdaterState[]; |
629 | 629 |
630 } // namespace prefs | 630 } // namespace prefs |
631 | 631 |
632 #endif // CHROME_COMMON_PREF_NAMES_H_ | 632 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |