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

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

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.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.h b/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.h
index c57d842e4b12c68e78339e99afc3287e0a98533f..166578c071bb2f2a9e6731a3f4ce113edb31c24b 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_unpositioned_float.h
@@ -27,14 +27,14 @@ struct CORE_EXPORT NGUnpositionedFloat
NGLogicalOffset origin_offset,
NGLogicalOffset from_offset,
NGBoxStrut margins,
- NGBlockNode* node,
+ NGBlockNode node,
NGBlockBreakToken* token) {
return AdoptRef(new NGUnpositionedFloat(margins, available_size,
percentage_size, origin_offset,
from_offset, node, token));
}
- Persistent<NGBlockNode> node;
+ NGBlockNode node;
RefPtr<NGBlockBreakToken> token;
// Available size of the constraint space that will be used by
@@ -98,7 +98,7 @@ struct CORE_EXPORT NGUnpositionedFloat
const NGLogicalSize& percentage_size,
const NGLogicalOffset& origin_offset,
const NGLogicalOffset& from_offset,
- NGBlockNode* node,
+ NGBlockNode node,
NGBlockBreakToken* token)
: node(node),
token(token),

Powered by Google App Engine
This is Rietveld 408576698