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

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: 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 const UChar32 ugariticWordDivider = 0x1039F; 81 const UChar32 ugariticWordDivider = 0x1039F;
82 const UChar whiteBullet = 0x25E6; 82 const UChar whiteBullet = 0x25E6;
83 const UChar whiteCircle = 0x25CB; 83 const UChar whiteCircle = 0x25CB;
84 const UChar whiteSesameDot = 0xFE46; 84 const UChar whiteSesameDot = 0xFE46;
85 const UChar whiteUpPointingTriangle = 0x25B3; 85 const UChar whiteUpPointingTriangle = 0x25B3;
86 const UChar yenSign = 0x00A5; 86 const UChar yenSign = 0x00A5;
87 const UChar zeroWidthJoiner = 0x200D; 87 const UChar zeroWidthJoiner = 0x200D;
88 const UChar zeroWidthNonJoiner = 0x200C; 88 const UChar zeroWidthNonJoiner = 0x200C;
89 const UChar zeroWidthSpace = 0x200B; 89 const UChar zeroWidthSpace = 0x200B;
90 const UChar zeroWidthNoBreakSpace = 0xFEFF; 90 const UChar zeroWidthNoBreakSpace = 0xFEFF;
91 const UChar tabCharacter = 0x0009;
tkent 2014/09/01 02:27:55 Please insert this line to the sorted position. Al
91 92
92 } // namespace Unicode 93 } // namespace Unicode
93 } // namespace WTF 94 } // namespace WTF
94 95
95 using WTF::Unicode::aegeanWordSeparatorLine; 96 using WTF::Unicode::aegeanWordSeparatorLine;
96 using WTF::Unicode::aegeanWordSeparatorDot; 97 using WTF::Unicode::aegeanWordSeparatorDot;
97 using WTF::Unicode::blackCircle; 98 using WTF::Unicode::blackCircle;
98 using WTF::Unicode::blackSquare; 99 using WTF::Unicode::blackSquare;
99 using WTF::Unicode::blackUpPointingTriangle; 100 using WTF::Unicode::blackUpPointingTriangle;
100 using WTF::Unicode::bullet; 101 using WTF::Unicode::bullet;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 using WTF::Unicode::ugariticWordDivider; 137 using WTF::Unicode::ugariticWordDivider;
137 using WTF::Unicode::whiteBullet; 138 using WTF::Unicode::whiteBullet;
138 using WTF::Unicode::whiteCircle; 139 using WTF::Unicode::whiteCircle;
139 using WTF::Unicode::whiteSesameDot; 140 using WTF::Unicode::whiteSesameDot;
140 using WTF::Unicode::whiteUpPointingTriangle; 141 using WTF::Unicode::whiteUpPointingTriangle;
141 using WTF::Unicode::yenSign; 142 using WTF::Unicode::yenSign;
142 using WTF::Unicode::zeroWidthJoiner; 143 using WTF::Unicode::zeroWidthJoiner;
143 using WTF::Unicode::zeroWidthNonJoiner; 144 using WTF::Unicode::zeroWidthNonJoiner;
144 using WTF::Unicode::zeroWidthSpace; 145 using WTF::Unicode::zeroWidthSpace;
145 using WTF::Unicode::zeroWidthNoBreakSpace; 146 using WTF::Unicode::zeroWidthNoBreakSpace;
147 using WTF::Unicode::tabCharacter;
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