| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2015 Google Inc. All rights reserved. | 2 * Copyright (C) 2015 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 inline HTMLSlotElement::HTMLSlotElement(Document& document) | 46 inline HTMLSlotElement::HTMLSlotElement(Document& document) |
| 47 : HTMLElement(slotTag, document) | 47 : HTMLElement(slotTag, document) |
| 48 , m_distributionState(DistributionDone) | 48 , m_distributionState(DistributionDone) |
| 49 { | 49 { |
| 50 setHasCustomStyleCallbacks(); | 50 setHasCustomStyleCallbacks(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 DEFINE_NODE_FACTORY(HTMLSlotElement); | 53 DEFINE_NODE_FACTORY(HTMLSlotElement); |
| 54 | 54 |
| 55 const HeapVector<Member<Node>> HTMLSlotElement::getAssignedNodesForBinding(const
AssignedNodesOptions& options) | 55 const HeapVector<Member<Node>> HTMLSlotElement::assignedNodesForBinding(const As
signedNodesOptions& options) |
| 56 { | 56 { |
| 57 updateDistribution(); | 57 updateDistribution(); |
| 58 if (options.hasFlatten() && options.flatten()) | 58 if (options.hasFlatten() && options.flatten()) |
| 59 return getDistributedNodes(); | 59 return getDistributedNodes(); |
| 60 return m_assignedNodes; | 60 return m_assignedNodes; |
| 61 } | 61 } |
| 62 | 62 |
| 63 const HeapVector<Member<Node>>& HTMLSlotElement::getDistributedNodes() | 63 const HeapVector<Member<Node>>& HTMLSlotElement::getDistributedNodes() |
| 64 { | 64 { |
| 65 ASSERT(!needsDistributionRecalc()); | 65 ASSERT(!needsDistributionRecalc()); |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 DEFINE_TRACE(HTMLSlotElement) | 287 DEFINE_TRACE(HTMLSlotElement) |
| 288 { | 288 { |
| 289 visitor->trace(m_assignedNodes); | 289 visitor->trace(m_assignedNodes); |
| 290 visitor->trace(m_distributedNodes); | 290 visitor->trace(m_distributedNodes); |
| 291 visitor->trace(m_distributedIndices); | 291 visitor->trace(m_distributedIndices); |
| 292 visitor->trace(m_oldDistributedNodes); | 292 visitor->trace(m_oldDistributedNodes); |
| 293 HTMLElement::trace(visitor); | 293 HTMLElement::trace(visitor); |
| 294 } | 294 } |
| 295 | 295 |
| 296 } // namespace blink | 296 } // namespace blink |
| OLD | NEW |