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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_block_break_token.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_block_break_token.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_break_token.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_break_token.cc
index a3e357057514786716f1fd31aca55b1de01d739b..f683fa29ba98539ae3c30c7c51886f158b1c05a0 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_block_break_token.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_block_break_token.cc
@@ -9,7 +9,7 @@
namespace blink {
NGBlockBreakToken::NGBlockBreakToken(
- NGLayoutInputNode* node,
+ NGLayoutInputNode node,
LayoutUnit used_block_size,
Vector<RefPtr<NGBreakToken>>& child_break_tokens)
: NGBreakToken(kBlockBreakToken, kUnfinished, node),
@@ -17,7 +17,7 @@ NGBlockBreakToken::NGBlockBreakToken(
child_break_tokens_.swap(child_break_tokens);
}
-NGBlockBreakToken::NGBlockBreakToken(NGLayoutInputNode* node)
+NGBlockBreakToken::NGBlockBreakToken(NGLayoutInputNode node)
: NGBreakToken(kBlockBreakToken, kFinished, node) {}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698