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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.cc

Issue 2921463004: [LayoutNG] PODify NGLayoutInputNode and sub-classes. (Closed)
Patch Set: new ng-bot expectations Created 3 years, 6 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/ng/ng_unpositioned_float.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.cc b/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.cc
index 5b7ea63c051f63dddf5bfd080a9d16c3a3104f05..a90ac0bb977f35c933325ddf610a11f889021c2d 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.cc
@@ -9,15 +9,15 @@
namespace blink {
bool NGUnpositionedFloat::IsLeft() const {
- return node->Style().Floating() == EFloat::kLeft;
+ return node.Style().Floating() == EFloat::kLeft;
}
bool NGUnpositionedFloat::IsRight() const {
- return node->Style().Floating() == EFloat::kRight;
+ return node.Style().Floating() == EFloat::kRight;
}
EClear NGUnpositionedFloat::ClearType() const {
- return node->Style().Clear();
+ return node.Style().Clear();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698