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

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

Issue 1167523003: Define a variable to distinguish system_icu from bundled_icu in Blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix the comment in BUILD.gn 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 | Annotate | Revision Log
« no previous file with comments | « Source/wtf/text/TextCodecICU.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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 const UChar firstStrongIsolateCharacter = 0x2068; 53 const UChar firstStrongIsolateCharacter = 0x2068;
54 const UChar fisheyeCharacter = 0x25C9; 54 const UChar fisheyeCharacter = 0x25C9;
55 const UChar hebrewPunctuationGereshCharacter = 0x05F3; 55 const UChar hebrewPunctuationGereshCharacter = 0x05F3;
56 const UChar hebrewPunctuationGershayimCharacter = 0x05F4; 56 const UChar hebrewPunctuationGershayimCharacter = 0x05F4;
57 const UChar hiraganaLetterSmallACharacter = 0x3041; 57 const UChar hiraganaLetterSmallACharacter = 0x3041;
58 const UChar horizontalEllipsisCharacter = 0x2026; 58 const UChar horizontalEllipsisCharacter = 0x2026;
59 const UChar hyphenCharacter = 0x2010; 59 const UChar hyphenCharacter = 0x2010;
60 const UChar hyphenMinusCharacter = 0x002D; 60 const UChar hyphenMinusCharacter = 0x002D;
61 const UChar ideographicCommaCharacter = 0x3001; 61 const UChar ideographicCommaCharacter = 0x3001;
62 const UChar ideographicFullStopCharacter = 0x3002; 62 const UChar ideographicFullStopCharacter = 0x3002;
63 #if defined(USING_SYSTEM_ICU)
63 const UChar ideographicSpaceCharacter = 0x3000; 64 const UChar ideographicSpaceCharacter = 0x3000;
65 #endif
64 const UChar inhibitArabicFormShapingCharacter = 0x206C; 66 const UChar inhibitArabicFormShapingCharacter = 0x206C;
65 const UChar inhibitSymmetricSwappingCharacter = 0x206A; 67 const UChar inhibitSymmetricSwappingCharacter = 0x206A;
66 const UChar latinCapitalLetterIWithDotAbove = 0x0130; 68 const UChar latinCapitalLetterIWithDotAbove = 0x0130;
67 const UChar latinSmallLetterDotlessI = 0x0131; 69 const UChar latinSmallLetterDotlessI = 0x0131;
68 const UChar leftDoubleQuotationMarkCharacter = 0x201C; 70 const UChar leftDoubleQuotationMarkCharacter = 0x201C;
69 const UChar leftSingleQuotationMarkCharacter = 0x2018; 71 const UChar leftSingleQuotationMarkCharacter = 0x2018;
70 const UChar leftToRightEmbedCharacter = 0x202A; 72 const UChar leftToRightEmbedCharacter = 0x202A;
71 const UChar leftToRightIsolateCharacter = 0x2066; 73 const UChar leftToRightIsolateCharacter = 0x2066;
72 const UChar leftToRightMarkCharacter = 0x200E; 74 const UChar leftToRightMarkCharacter = 0x200E;
73 const UChar leftToRightOverrideCharacter = 0x202D; 75 const UChar leftToRightOverrideCharacter = 0x202D;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 using WTF::Unicode::firstStrongIsolateCharacter; 127 using WTF::Unicode::firstStrongIsolateCharacter;
126 using WTF::Unicode::fisheyeCharacter; 128 using WTF::Unicode::fisheyeCharacter;
127 using WTF::Unicode::hebrewPunctuationGereshCharacter; 129 using WTF::Unicode::hebrewPunctuationGereshCharacter;
128 using WTF::Unicode::hebrewPunctuationGershayimCharacter; 130 using WTF::Unicode::hebrewPunctuationGershayimCharacter;
129 using WTF::Unicode::hiraganaLetterSmallACharacter; 131 using WTF::Unicode::hiraganaLetterSmallACharacter;
130 using WTF::Unicode::horizontalEllipsisCharacter; 132 using WTF::Unicode::horizontalEllipsisCharacter;
131 using WTF::Unicode::hyphenCharacter; 133 using WTF::Unicode::hyphenCharacter;
132 using WTF::Unicode::hyphenMinusCharacter; 134 using WTF::Unicode::hyphenMinusCharacter;
133 using WTF::Unicode::ideographicCommaCharacter; 135 using WTF::Unicode::ideographicCommaCharacter;
134 using WTF::Unicode::ideographicFullStopCharacter; 136 using WTF::Unicode::ideographicFullStopCharacter;
137 #if defined(USING_SYSTEM_ICU)
135 using WTF::Unicode::ideographicSpaceCharacter; 138 using WTF::Unicode::ideographicSpaceCharacter;
139 #endif
136 using WTF::Unicode::inhibitArabicFormShapingCharacter; 140 using WTF::Unicode::inhibitArabicFormShapingCharacter;
137 using WTF::Unicode::inhibitSymmetricSwappingCharacter; 141 using WTF::Unicode::inhibitSymmetricSwappingCharacter;
138 using WTF::Unicode::latinCapitalLetterIWithDotAbove; 142 using WTF::Unicode::latinCapitalLetterIWithDotAbove;
139 using WTF::Unicode::latinSmallLetterDotlessI; 143 using WTF::Unicode::latinSmallLetterDotlessI;
140 using WTF::Unicode::leftDoubleQuotationMarkCharacter; 144 using WTF::Unicode::leftDoubleQuotationMarkCharacter;
141 using WTF::Unicode::leftSingleQuotationMarkCharacter; 145 using WTF::Unicode::leftSingleQuotationMarkCharacter;
142 using WTF::Unicode::leftToRightEmbedCharacter; 146 using WTF::Unicode::leftToRightEmbedCharacter;
143 using WTF::Unicode::leftToRightIsolateCharacter; 147 using WTF::Unicode::leftToRightIsolateCharacter;
144 using WTF::Unicode::leftToRightMarkCharacter; 148 using WTF::Unicode::leftToRightMarkCharacter;
145 using WTF::Unicode::leftToRightOverrideCharacter; 149 using WTF::Unicode::leftToRightOverrideCharacter;
(...skipping 25 matching lines...) Expand all
171 using WTF::Unicode::whiteCircleCharacter; 175 using WTF::Unicode::whiteCircleCharacter;
172 using WTF::Unicode::whiteSesameDotCharacter; 176 using WTF::Unicode::whiteSesameDotCharacter;
173 using WTF::Unicode::whiteUpPointingTriangleCharacter; 177 using WTF::Unicode::whiteUpPointingTriangleCharacter;
174 using WTF::Unicode::yenSignCharacter; 178 using WTF::Unicode::yenSignCharacter;
175 using WTF::Unicode::zeroWidthJoinerCharacter; 179 using WTF::Unicode::zeroWidthJoinerCharacter;
176 using WTF::Unicode::zeroWidthNonJoinerCharacter; 180 using WTF::Unicode::zeroWidthNonJoinerCharacter;
177 using WTF::Unicode::zeroWidthSpaceCharacter; 181 using WTF::Unicode::zeroWidthSpaceCharacter;
178 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter; 182 using WTF::Unicode::zeroWidthNoBreakSpaceCharacter;
179 183
180 #endif // CharacterNames_h 184 #endif // CharacterNames_h
OLDNEW
« no previous file with comments | « Source/wtf/text/TextCodecICU.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698