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

Unified Diff: third_party/WebKit/Source/platform/text/BidiCharacterRun.h

Issue 2385283002: reflow comments in platform/{testing,text} (Closed)
Patch Set: idunnolol Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « third_party/WebKit/Source/platform/testing/UnitTestHelpers.h ('k') | third_party/WebKit/Source/platform/text/BidiContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698