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

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

Issue 509373002: This is code readability patch, No Layout Test case needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comment fixes Created 6 years, 3 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/platform/fonts/harfbuzz/HarfBuzzShaper.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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 const UChar replacementCharacter = 0xFFFD; 69 const UChar replacementCharacter = 0xFFFD;
70 const UChar rightDoubleQuotationMark = 0x201D; 70 const UChar rightDoubleQuotationMark = 0x201D;
71 const UChar rightSingleQuotationMark = 0x2019; 71 const UChar rightSingleQuotationMark = 0x2019;
72 const UChar rightToLeftEmbed = 0x202B; 72 const UChar rightToLeftEmbed = 0x202B;
73 const UChar rightToLeftMark = 0x200F; 73 const UChar rightToLeftMark = 0x200F;
74 const UChar rightToLeftOverride = 0x202E; 74 const UChar rightToLeftOverride = 0x202E;
75 const UChar sesameDot = 0xFE45; 75 const UChar sesameDot = 0xFE45;
76 const UChar smallLetterSharpS = 0x00DF; 76 const UChar smallLetterSharpS = 0x00DF;
77 const UChar softHyphen = 0x00AD; 77 const UChar softHyphen = 0x00AD;
78 const UChar space = 0x0020; 78 const UChar space = 0x0020;
79 const UChar tabulationCharacter = 0x0009;
tkent 2014/09/01 07:45:59 As I wrote, U+0009 is 'CHARACTER TABULATION'. So
h.joshi 2014/09/01 08:18:00 Done.
79 const UChar tibetanMarkIntersyllabicTsheg = 0x0F0B; 80 const UChar tibetanMarkIntersyllabicTsheg = 0x0F0B;
80 const UChar tibetanMarkDelimiterTshegBstar = 0x0F0C; 81 const UChar tibetanMarkDelimiterTshegBstar = 0x0F0C;
81 const UChar32 ugariticWordDivider = 0x1039F; 82 const UChar32 ugariticWordDivider = 0x1039F;
82 const UChar whiteBullet = 0x25E6; 83 const UChar whiteBullet = 0x25E6;
83 const UChar whiteCircle = 0x25CB; 84 const UChar whiteCircle = 0x25CB;
84 const UChar whiteSesameDot = 0xFE46; 85 const UChar whiteSesameDot = 0xFE46;
85 const UChar whiteUpPointingTriangle = 0x25B3; 86 const UChar whiteUpPointingTriangle = 0x25B3;
86 const UChar yenSign = 0x00A5; 87 const UChar yenSign = 0x00A5;
87 const UChar zeroWidthJoiner = 0x200D; 88 const UChar zeroWidthJoiner = 0x200D;
88 const UChar zeroWidthNonJoiner = 0x200C; 89 const UChar zeroWidthNonJoiner = 0x200C;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 using WTF::Unicode::popDirectionalFormatting; 125 using WTF::Unicode::popDirectionalFormatting;
125 using WTF::Unicode::replacementCharacter; 126 using WTF::Unicode::replacementCharacter;
126 using WTF::Unicode::rightDoubleQuotationMark; 127 using WTF::Unicode::rightDoubleQuotationMark;
127 using WTF::Unicode::rightSingleQuotationMark; 128 using WTF::Unicode::rightSingleQuotationMark;
128 using WTF::Unicode::rightToLeftEmbed; 129 using WTF::Unicode::rightToLeftEmbed;
129 using WTF::Unicode::rightToLeftMark; 130 using WTF::Unicode::rightToLeftMark;
130 using WTF::Unicode::rightToLeftOverride; 131 using WTF::Unicode::rightToLeftOverride;
131 using WTF::Unicode::sesameDot; 132 using WTF::Unicode::sesameDot;
132 using WTF::Unicode::softHyphen; 133 using WTF::Unicode::softHyphen;
133 using WTF::Unicode::space; 134 using WTF::Unicode::space;
135 using WTF::Unicode::tabulationCharacter;
134 using WTF::Unicode::tibetanMarkIntersyllabicTsheg; 136 using WTF::Unicode::tibetanMarkIntersyllabicTsheg;
135 using WTF::Unicode::tibetanMarkDelimiterTshegBstar; 137 using WTF::Unicode::tibetanMarkDelimiterTshegBstar;
136 using WTF::Unicode::ugariticWordDivider; 138 using WTF::Unicode::ugariticWordDivider;
137 using WTF::Unicode::whiteBullet; 139 using WTF::Unicode::whiteBullet;
138 using WTF::Unicode::whiteCircle; 140 using WTF::Unicode::whiteCircle;
139 using WTF::Unicode::whiteSesameDot; 141 using WTF::Unicode::whiteSesameDot;
140 using WTF::Unicode::whiteUpPointingTriangle; 142 using WTF::Unicode::whiteUpPointingTriangle;
141 using WTF::Unicode::yenSign; 143 using WTF::Unicode::yenSign;
142 using WTF::Unicode::zeroWidthJoiner; 144 using WTF::Unicode::zeroWidthJoiner;
143 using WTF::Unicode::zeroWidthNonJoiner; 145 using WTF::Unicode::zeroWidthNonJoiner;
144 using WTF::Unicode::zeroWidthSpace; 146 using WTF::Unicode::zeroWidthSpace;
145 using WTF::Unicode::zeroWidthNoBreakSpace; 147 using WTF::Unicode::zeroWidthNoBreakSpace;
146 148
147 #endif // CharacterNames_h 149 #endif // CharacterNames_h
OLDNEW
« no previous file with comments | « Source/platform/fonts/harfbuzz/HarfBuzzShaper.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698