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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_units.h

Issue 2272313004: [layoutng] Rename struct members to match style guide (Closed)
Patch Set: Created 4 years, 4 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
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_margin_strut.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/ng/ng_units.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_units.h b/third_party/WebKit/Source/core/layout/ng/ng_units.h
index 73417920b6c5809232ce234625d147015d4ae7a3..2d8ad7e008801f837ca871fdb9ebdb9236f88590 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_units.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_units.h
@@ -13,16 +13,16 @@ class LayoutUnit;
struct NGLogicalSize {
NGLogicalSize() {}
- NGLogicalSize(LayoutUnit inlineSize, LayoutUnit blockSize)
- : inlineSize(inlineSize), blockSize(blockSize) {}
+ NGLogicalSize(LayoutUnit inline_size, LayoutUnit block_size)
+ : inline_size(inline_size), block_size(block_size) {}
- LayoutUnit inlineSize;
- LayoutUnit blockSize;
+ LayoutUnit inline_size;
+ LayoutUnit block_size;
};
struct NGLogicalOffset {
- LayoutUnit inlineOffset;
- LayoutUnit blockOffset;
+ LayoutUnit inline_offset;
+ LayoutUnit block_offset;
};
struct NGPhysicalSize {
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_margin_strut.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698