Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef TextJustify_h | |
| 6 #define TextJustify_h | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 enum TextJustify { | |
| 11 kTextJustifyAuto = 0x0, | |
|
suzyh_UTC10 (ex-contributor)
2017/05/15 00:28:33
Why do we give values for these?
| |
| 12 kTextJustifyNone = 0x1, | |
| 13 kTextJustifyInterWord = 0x2, | |
| 14 kTextJustifyDistribute = 0x3 | |
| 15 }; | |
| 16 | |
| 17 } // namespace blink | |
| 18 | |
| 19 #endif // TextJustify_h | |
| OLD | NEW |