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

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

Issue 2228843003: [LayoutNG] Change core/layout/ng to Chromium style and rename files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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_text.cc ('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/NGUnits.h b/third_party/WebKit/Source/core/layout/ng/ng_units.h
similarity index 54%
rename from third_party/WebKit/Source/core/layout/ng/NGUnits.h
rename to third_party/WebKit/Source/core/layout/ng/ng_units.h
index e69dd15d923cefe81fc4f9185603bfa67f02e341..e0975f48e2a5245377e4f9994937093784c0c5a3 100644
--- a/third_party/WebKit/Source/core/layout/ng/NGUnits.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_units.h
@@ -10,37 +10,37 @@ namespace blink {
class LayoutUnit;
struct NGLogicalSize {
- LayoutUnit inlineSize;
- LayoutUnit blockSize;
+ LayoutUnit inlineSize;
+ LayoutUnit blockSize;
};
struct NGLogicalOffset {
- LayoutUnit inlineOffset;
- LayoutUnit blockOffset;
+ LayoutUnit inlineOffset;
+ LayoutUnit blockOffset;
};
struct NGPhysicalSize {
- LayoutUnit width;
- LayoutUnit height;
+ LayoutUnit width;
+ LayoutUnit height;
};
struct NGPhysicalLocation {
- LayoutUnit top;
- LayoutUnit left;
+ LayoutUnit top;
+ LayoutUnit left;
};
struct NGPhysicalRect {
- NGPhysicalSize size;
- NGPhysicalLocation location;
+ NGPhysicalSize size;
+ NGPhysicalLocation location;
};
struct NGPixelSnappedPhysicalRect {
- int top;
- int left;
- int width;
- int height;
+ int top;
+ int left;
+ int width;
+ int height;
};
-} // namespace blink
+} // namespace blink
-#endif // NGUnits_h
+#endif // NGUnits_h
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_text.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698