| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/layout/ng/ng_layout_opportunity_iterator.h" | 5 #include "core/layout/ng/ng_layout_opportunity_iterator.h" |
| 6 | 6 |
| 7 #include "core/layout/ng/ng_exclusion.h" | 7 #include "core/layout/ng/ng_units.h" |
| 8 #include "wtf/NonCopyingSort.h" | 8 #include "wtf/NonCopyingSort.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| 11 namespace { | 11 namespace { |
| 12 | 12 |
| 13 // Collects all opportunities from leaves of Layout Opportunity spatial tree. | 13 // Collects all opportunities from leaves of Layout Opportunity spatial tree. |
| 14 void CollectAllOpportunities(const NGLayoutOpportunityTreeNode* node, | 14 void CollectAllOpportunities(const NGLayoutOpportunityTreeNode* node, |
| 15 NGLayoutOpportunities& opportunities) { | 15 NGLayoutOpportunities& opportunities) { |
| 16 if (!node) | 16 if (!node) |
| 17 return; | 17 return; |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 const NGLayoutOpportunity NGLayoutOpportunityIterator::Next() { | 270 const NGLayoutOpportunity NGLayoutOpportunityIterator::Next() { |
| 271 if (opportunity_iter_ == opportunities_.end()) | 271 if (opportunity_iter_ == opportunities_.end()) |
| 272 return NGLayoutOpportunity(); | 272 return NGLayoutOpportunity(); |
| 273 auto* opportunity = opportunity_iter_; | 273 auto* opportunity = opportunity_iter_; |
| 274 opportunity_iter_++; | 274 opportunity_iter_++; |
| 275 return NGLayoutOpportunity(*opportunity); | 275 return NGLayoutOpportunity(*opportunity); |
| 276 } | 276 } |
| 277 | 277 |
| 278 } // namespace blink | 278 } // namespace blink |
| OLD | NEW |