Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: chrome/common/pref_names.h

Issue 10540022: mac: Plumbing for the emoji font. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: whoops Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 extern const char kStaticEncodings[]; 65 extern const char kStaticEncodings[];
66 extern const char kShowBookmarkBar[]; 66 extern const char kShowBookmarkBar[];
67 extern const char kBookmarkEditorExpandedNodes[]; 67 extern const char kBookmarkEditorExpandedNodes[];
68 extern const char kWebKitCommonScript[]; 68 extern const char kWebKitCommonScript[];
69 extern const char kWebKitStandardFontFamily[]; 69 extern const char kWebKitStandardFontFamily[];
70 extern const char kWebKitFixedFontFamily[]; 70 extern const char kWebKitFixedFontFamily[];
71 extern const char kWebKitSerifFontFamily[]; 71 extern const char kWebKitSerifFontFamily[];
72 extern const char kWebKitSansSerifFontFamily[]; 72 extern const char kWebKitSansSerifFontFamily[];
73 extern const char kWebKitCursiveFontFamily[]; 73 extern const char kWebKitCursiveFontFamily[];
74 extern const char kWebKitFantasyFontFamily[]; 74 extern const char kWebKitFantasyFontFamily[];
75 extern const char kWebKitPictographFontFamily[];
75 extern const char kWebKitStandardFontFamilyMap[]; 76 extern const char kWebKitStandardFontFamilyMap[];
76 extern const char kWebKitFixedFontFamilyMap[]; 77 extern const char kWebKitFixedFontFamilyMap[];
77 extern const char kWebKitSerifFontFamilyMap[]; 78 extern const char kWebKitSerifFontFamilyMap[];
78 extern const char kWebKitSansSerifFontFamilyMap[]; 79 extern const char kWebKitSansSerifFontFamilyMap[];
79 extern const char kWebKitCursiveFontFamilyMap[]; 80 extern const char kWebKitCursiveFontFamilyMap[];
80 extern const char kWebKitFantasyFontFamilyMap[]; 81 extern const char kWebKitFantasyFontFamilyMap[];
82 extern const char kWebKitPictographFontFamilyMap[];
81 83
82 // ISO 15924 four-letter script codes that per-script font prefs are supported 84 // ISO 15924 four-letter script codes that per-script font prefs are supported
83 // for. 85 // for.
84 extern const char* const kWebKitScriptsForFontFamilyMaps[]; 86 extern const char* const kWebKitScriptsForFontFamilyMaps[];
85 extern const size_t kWebKitScriptsForFontFamilyMapsLength; 87 extern const size_t kWebKitScriptsForFontFamilyMapsLength;
86 88
87 // Per-script font prefs that have defaults, for easy reference when registering 89 // Per-script font prefs that have defaults, for easy reference when registering
88 // the defaults. 90 // the defaults.
89 extern const char kWebKitStandardFontFamilyArabic[]; 91 extern const char kWebKitStandardFontFamilyArabic[];
90 extern const char kWebKitFixedFontFamilyArabic[]; 92 extern const char kWebKitFixedFontFamilyArabic[];
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 extern const char kInManagedMode[]; 769 extern const char kInManagedMode[];
768 770
769 extern const char kNetworkProfileWarningsLeft[]; 771 extern const char kNetworkProfileWarningsLeft[];
770 extern const char kNetworkProfileLastWarningTime[]; 772 extern const char kNetworkProfileLastWarningTime[];
771 773
772 extern const char kLastPolicyStatisticsUpdate[]; 774 extern const char kLastPolicyStatisticsUpdate[];
773 775
774 } // namespace prefs 776 } // namespace prefs
775 777
776 #endif // CHROME_COMMON_PREF_NAMES_H_ 778 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698