Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 455 }; | 455 }; |
| 456 | 456 |
| 457 enum MotionRotationType { MotionRotationAuto, MotionRotationFixed }; | 457 enum MotionRotationType { MotionRotationAuto, MotionRotationFixed }; |
| 458 | 458 |
| 459 enum EBackfaceVisibility { | 459 enum EBackfaceVisibility { |
| 460 BackfaceVisibilityVisible, BackfaceVisibilityHidden | 460 BackfaceVisibilityVisible, BackfaceVisibilityHidden |
| 461 }; | 461 }; |
| 462 | 462 |
| 463 enum ELineClampType { LineClampLineCount, LineClampPercentage }; | 463 enum ELineClampType { LineClampLineCount, LineClampPercentage }; |
| 464 | 464 |
| 465 enum Hyphens { HyphensNone, HyphensManual, HyphensAuto }; | 465 enum EHyphens { HyphensNone, HyphensManual, HyphensAuto }; |
|
tkent
2016/04/26 07:08:51
Don't use 'E' prefix. It's KHTML-era coding style
kojii
2016/04/26 07:38:03
Done, didn't know that, added type_name=Hyphens to
| |
| 466 | 466 |
| 467 enum ESpeak { SpeakNone, SpeakNormal, SpeakSpellOut, SpeakDigits, SpeakLiteralPu nctuation, SpeakNoPunctuation }; | 467 enum ESpeak { SpeakNone, SpeakNormal, SpeakSpellOut, SpeakDigits, SpeakLiteralPu nctuation, SpeakNoPunctuation }; |
| 468 | 468 |
| 469 enum TextEmphasisFill { TextEmphasisFillFilled, TextEmphasisFillOpen }; | 469 enum TextEmphasisFill { TextEmphasisFillFilled, TextEmphasisFillOpen }; |
| 470 | 470 |
| 471 enum TextEmphasisMark { TextEmphasisMarkNone, TextEmphasisMarkAuto, TextEmphasis MarkDot, TextEmphasisMarkCircle, TextEmphasisMarkDoubleCircle, TextEmphasisMarkT riangle, TextEmphasisMarkSesame, TextEmphasisMarkCustom }; | 471 enum TextEmphasisMark { TextEmphasisMarkNone, TextEmphasisMarkAuto, TextEmphasis MarkDot, TextEmphasisMarkCircle, TextEmphasisMarkDoubleCircle, TextEmphasisMarkT riangle, TextEmphasisMarkSesame, TextEmphasisMarkCustom }; |
| 472 | 472 |
| 473 enum TextEmphasisPosition { TextEmphasisPositionOver, TextEmphasisPositionUnder }; | 473 enum TextEmphasisPosition { TextEmphasisPositionOver, TextEmphasisPositionUnder }; |
| 474 | 474 |
| 475 enum TextOrientation { TextOrientationMixed, TextOrientationUpright, TextOrienta tionSideways }; | 475 enum TextOrientation { TextOrientationMixed, TextOrientationUpright, TextOrienta tionSideways }; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 609 | 609 |
| 610 enum AutoRepeatType { | 610 enum AutoRepeatType { |
| 611 NoAutoRepeat, | 611 NoAutoRepeat, |
| 612 AutoFill, | 612 AutoFill, |
| 613 AutoFit | 613 AutoFit |
| 614 }; | 614 }; |
| 615 | 615 |
| 616 } // namespace blink | 616 } // namespace blink |
| 617 | 617 |
| 618 #endif // ComputedStyleConstants_h | 618 #endif // ComputedStyleConstants_h |
| OLD | NEW |