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

Side by Side Diff: Source/wtf/unicode/CharacterNames.h

Issue 781003003: Using fullstop Unicode if horizontal ellipsis not present (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@diff_font_render
Patch Set: Rebase patch Created 5 years, 6 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
« no previous file with comments | « Source/core/layout/LayoutBlockFlowLine.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 const UChar blackSquareCharacter = 0x25A0; 45 const UChar blackSquareCharacter = 0x25A0;
46 const UChar blackUpPointingTriangleCharacter = 0x25B2; 46 const UChar blackUpPointingTriangleCharacter = 0x25B2;
47 const UChar bulletCharacter = 0x2022; 47 const UChar bulletCharacter = 0x2022;
48 const UChar bullseyeCharacter = 0x25CE; 48 const UChar bullseyeCharacter = 0x25CE;
49 const UChar carriageReturnCharacter = 0x000D; 49 const UChar carriageReturnCharacter = 0x000D;
50 const UChar tabulationCharacter = 0x0009; 50 const UChar tabulationCharacter = 0x0009;
51 const UChar ethiopicPrefaceColonCharacter = 0x1366; 51 const UChar ethiopicPrefaceColonCharacter = 0x1366;
52 const UChar ethiopicWordspaceCharacter = 0x1361; 52 const UChar ethiopicWordspaceCharacter = 0x1361;
53 const UChar firstStrongIsolateCharacter = 0x2068; 53 const UChar firstStrongIsolateCharacter = 0x2068;
54 const UChar fisheyeCharacter = 0x25C9; 54 const UChar fisheyeCharacter = 0x25C9;
55 const UChar fullstopCharacter = 0x002E;
55 const UChar hebrewPunctuationGereshCharacter = 0x05F3; 56 const UChar hebrewPunctuationGereshCharacter = 0x05F3;
56 const UChar hebrewPunctuationGershayimCharacter = 0x05F4; 57 const UChar hebrewPunctuationGershayimCharacter = 0x05F4;
57 const UChar hiraganaLetterSmallACharacter = 0x3041; 58 const UChar hiraganaLetterSmallACharacter = 0x3041;
58 const UChar horizontalEllipsisCharacter = 0x2026; 59 const UChar horizontalEllipsisCharacter = 0x2026;
59 const UChar hyphenCharacter = 0x2010; 60 const UChar hyphenCharacter = 0x2010;
60 const UChar hyphenMinusCharacter = 0x002D; 61 const UChar hyphenMinusCharacter = 0x002D;
61 const UChar ideographicCommaCharacter = 0x3001; 62 const UChar ideographicCommaCharacter = 0x3001;
62 const UChar ideographicFullStopCharacter = 0x3002; 63 const UChar ideographicFullStopCharacter = 0x3002;
63 #if defined(USING_SYSTEM_ICU) 64 #if defined(USING_SYSTEM_ICU)
64 const UChar ideographicSpaceCharacter = 0x3000; 65 const UChar ideographicSpaceCharacter = 0x3000;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 using WTF::Unicode::blackSquareCharacter; 120 using WTF::Unicode::blackSquareCharacter;
120 using WTF::Unicode::blackUpPointingTriangleCharacter; 121 using WTF::Unicode::blackUpPointingTriangleCharacter;
121 using WTF::Unicode::bulletCharacter; 122 using WTF::Unicode::bulletCharacter;
122 using WTF::Unicode::bullseyeCharacter; 123 using WTF::Unicode::bullseyeCharacter;
123 using WTF::Unicode::carriageReturnCharacter; 124 using WTF::Unicode::carriageReturnCharacter;
124 using WTF::Unicode::tabulationCharacter; 125 using WTF::Unicode::tabulationCharacter;
125 using WTF::Unicode::ethiopicPrefaceColonCharacter; 126 using WTF::Unicode::ethiopicPrefaceColonCharacter;
126 using WTF::Unicode::ethiopicWordspaceCharacter; 127 using WTF::Unicode::ethiopicWordspaceCharacter;
127 using WTF::Unicode::firstStrongIsolateCharacter; 128 using WTF::Unicode::firstStrongIsolateCharacter;
128 using WTF::Unicode::fisheyeCharacter; 129 using WTF::Unicode::fisheyeCharacter;
130 using WTF::Unicode::fullstopCharacter;
129 using WTF::Unicode::hebrewPunctuationGereshCharacter; 131 using WTF::Unicode::hebrewPunctuationGereshCharacter;
130 using WTF::Unicode::hebrewPunctuationGershayimCharacter; 132 using WTF::Unicode::hebrewPunctuationGershayimCharacter;
131 using WTF::Unicode::hiraganaLetterSmallACharacter; 133 using WTF::Unicode::hiraganaLetterSmallACharacter;
132 using WTF::Unicode::horizontalEllipsisCharacter; 134 using WTF::Unicode::horizontalEllipsisCharacter;
133 using WTF::Unicode::hyphenCharacter; 135 using WTF::Unicode::hyphenCharacter;
134 using WTF::Unicode::hyphenMinusCharacter; 136 using WTF::Unicode::hyphenMinusCharacter;
135 using WTF::Unicode::ideographicCommaCharacter; 137 using WTF::Unicode::ideographicCommaCharacter;
136 using WTF::Unicode::ideographicFullStopCharacter; 138 using WTF::Unicode::ideographicFullStopCharacter;
137 #if defined(USING_SYSTEM_ICU) 139 #if defined(USING_SYSTEM_ICU)
138 using WTF::Unicode::ideographicSpaceCharacter; 140 using WTF::Unicode::ideographicSpaceCharacter;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 using WTF::Unicode::whiteCircleCharacter; 177 using WTF::Unicode::whiteCircleCharacter;
176 using WTF::Unicode::whiteSesameDotCharacter; 178 using WTF::Unicode::whiteSesameDotCharacter;
177 using WTF::Unicode::whiteUpPointingTriangleCharacter; 179 using WTF::Unicode::whiteUpPointingTriangleCharacter;
178 using WTF::Unicode::yenSignCharacter; 180 using WTF::Unicode::yenSignCharacter;
179 using WTF::Unicode::zeroWidthJoinerCharacter; 181 using WTF::Unicode::zeroWidthJoinerCharacter;
180 using WTF::Unicode::zeroWidthNonJoinerCharacter; 182 using WTF::Unicode::zeroWidthNonJoinerCharacter;
181 using WTF::Unicode::zeroWidthSpaceCharacter; 183 using WTF::Unicode::zeroWidthSpaceCharacter;
182 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter; 184 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter;
183 185
184 #endif // CharacterNames_h 186 #endif // CharacterNames_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutBlockFlowLine.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698