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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineBox.h

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. Created 3 years, 8 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/core/layout/line/InlineBox.h
diff --git a/third_party/WebKit/Source/core/layout/line/InlineBox.h b/third_party/WebKit/Source/core/layout/line/InlineBox.h
index b135f43bd9dba0f695a8f1fe163dcc426f99d428..cdc28e93f97a1f44d24410d97ae0aef98369eb70 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineBox.h
+++ b/third_party/WebKit/Source/core/layout/line/InlineBox.h
@@ -407,20 +407,20 @@ class CORE_EXPORT InlineBox : public DisplayItemClient {
bool dirty = false,
bool extracted = false,
bool isHorizontal = true)
- : m_firstLine(firstLine),
- m_constructed(constructed),
- m_bidiEmbeddingLevel(0),
- m_dirty(dirty),
- m_extracted(extracted),
- m_hasVirtualLogicalHeight(false),
- m_isHorizontal(isHorizontal),
- m_endsWithBreak(false),
- m_hasSelectedChildrenOrCanHaveLeadingExpansion(false),
- m_knownToHaveNoOverflow(true),
- m_hasEllipsisBoxOrHyphen(false),
- m_dirOverride(false),
- m_isText(false),
- m_expansion(0) {}
+ : m_FirstLine(firstLine),
+ m_Constructed(constructed),
+ m_BidiEmbeddingLevel(0),
+ m_Dirty(dirty),
+ m_Extracted(extracted),
+ m_HasVirtualLogicalHeight(false),
+ m_IsHorizontal(isHorizontal),
+ m_EndsWithBreak(false),
+ m_HasSelectedChildrenOrCanHaveLeadingExpansion(false),
+ m_KnownToHaveNoOverflow(true),
+ m_HasEllipsisBoxOrHyphen(false),
+ m_DirOverride(false),
+ m_IsText(false),
+ m_Expansion(0) {}
// Some of these bits are actually for subclasses and moved here to compact
// the structures.

Powered by Google App Engine
This is Rietveld 408576698