| Index: third_party/WebKit/Source/platform/text/BidiCharacterRun.h
|
| diff --git a/third_party/WebKit/Source/platform/text/BidiCharacterRun.h b/third_party/WebKit/Source/platform/text/BidiCharacterRun.h
|
| index 4a93e1798e503b21c5f85132b57b836639c5842e..25f9b9eb1b1e5a9c9cbd6390923f9e4e712ebfc4 100644
|
| --- a/third_party/WebKit/Source/platform/text/BidiCharacterRun.h
|
| +++ b/third_party/WebKit/Source/platform/text/BidiCharacterRun.h
|
| @@ -75,10 +75,12 @@ struct BidiCharacterRun {
|
| BidiCharacterRun* next() const { return m_next; }
|
| void setNext(BidiCharacterRun* next) { m_next = next; }
|
|
|
| - // Do not add anything apart from bitfields until after m_next. See https://bugs.webkit.org/show_bug.cgi?id=100173
|
| + // Do not add anything apart from bitfields until after m_next. See
|
| + // https://bugs.webkit.org/show_bug.cgi?id=100173
|
| bool m_override : 1;
|
| - bool
|
| - m_hasHyphen : 1; // Used by BidiRun subclass which is a layering violation but enables us to save 8 bytes per object on 64-bit.
|
| + // Used by BidiRun subclass which is a layering violation but enables us to
|
| + // save 8 bytes per object on 64-bit.
|
| + bool m_hasHyphen : 1;
|
| unsigned char m_level;
|
| BidiCharacterRun* m_next;
|
| int m_start;
|
|
|