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 // 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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 extern const char kWebKitSansSerifFontFamilyGreek[]; | 111 extern const char kWebKitSansSerifFontFamilyGreek[]; |
112 extern const char kWebKitStandardFontFamilyJapanese[]; | 112 extern const char kWebKitStandardFontFamilyJapanese[]; |
113 extern const char kWebKitFixedFontFamilyJapanese[]; | 113 extern const char kWebKitFixedFontFamilyJapanese[]; |
114 extern const char kWebKitSerifFontFamilyJapanese[]; | 114 extern const char kWebKitSerifFontFamilyJapanese[]; |
115 extern const char kWebKitSansSerifFontFamilyJapanese[]; | 115 extern const char kWebKitSansSerifFontFamilyJapanese[]; |
116 extern const char kWebKitStandardFontFamilyKorean[]; | 116 extern const char kWebKitStandardFontFamilyKorean[]; |
117 extern const char kWebKitFixedFontFamilyKorean[]; | 117 extern const char kWebKitFixedFontFamilyKorean[]; |
118 extern const char kWebKitSerifFontFamilyKorean[]; | 118 extern const char kWebKitSerifFontFamilyKorean[]; |
119 extern const char kWebKitSansSerifFontFamilyKorean[]; | 119 extern const char kWebKitSansSerifFontFamilyKorean[]; |
120 extern const char kWebKitCursiveFontFamilyKorean[]; | 120 extern const char kWebKitCursiveFontFamilyKorean[]; |
121 extern const char kWebKitStandardFontFamilyLatin[]; | |
122 extern const char kWebKitFixedFontFamilyLatin[]; | |
123 extern const char kWebKitSerifFontFamilyLatin[]; | |
124 extern const char kWebKitSansSerifFontFamilyLatin[]; | |
125 extern const char kWebKitCursiveFontFamilyLatin[]; | |
126 extern const char kWebKitFantasyFontFamilyLatin[]; | |
127 extern const char kWebKitPictographFontFamilyLatin[]; | |
128 extern const char kWebKitStandardFontFamilySimplifiedHan[]; | 121 extern const char kWebKitStandardFontFamilySimplifiedHan[]; |
129 extern const char kWebKitFixedFontFamilySimplifiedHan[]; | 122 extern const char kWebKitFixedFontFamilySimplifiedHan[]; |
130 extern const char kWebKitSerifFontFamilySimplifiedHan[]; | 123 extern const char kWebKitSerifFontFamilySimplifiedHan[]; |
131 extern const char kWebKitSansSerifFontFamilySimplifiedHan[]; | 124 extern const char kWebKitSansSerifFontFamilySimplifiedHan[]; |
132 extern const char kWebKitStandardFontFamilyTraditionalHan[]; | 125 extern const char kWebKitStandardFontFamilyTraditionalHan[]; |
133 extern const char kWebKitFixedFontFamilyTraditionalHan[]; | 126 extern const char kWebKitFixedFontFamilyTraditionalHan[]; |
134 extern const char kWebKitSerifFontFamilyTraditionalHan[]; | 127 extern const char kWebKitSerifFontFamilyTraditionalHan[]; |
135 extern const char kWebKitSansSerifFontFamilyTraditionalHan[]; | 128 extern const char kWebKitSansSerifFontFamilyTraditionalHan[]; |
136 | 129 |
137 extern const char kWebKitDefaultFontSize[]; | 130 extern const char kWebKitDefaultFontSize[]; |
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 extern const char kAppListLaunchCount[]; | 912 extern const char kAppListLaunchCount[]; |
920 extern const char kLastAppListAppLaunchPing[]; | 913 extern const char kLastAppListAppLaunchPing[]; |
921 extern const char kAppListAppLaunchCount[]; | 914 extern const char kAppListAppLaunchCount[]; |
922 | 915 |
923 extern const char kDRMSalt[]; | 916 extern const char kDRMSalt[]; |
924 extern const char kEnableDRM[]; | 917 extern const char kEnableDRM[]; |
925 | 918 |
926 } // namespace prefs | 919 } // namespace prefs |
927 | 920 |
928 #endif // CHROME_COMMON_PREF_NAMES_H_ | 921 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |