Chromium Code Reviews| Index: Source/core/dom/shadow/DistributedNodes.h |
| diff --git a/Source/core/dom/shadow/DistributedNodes.h b/Source/core/dom/shadow/DistributedNodes.h |
| index 4259c7e4503724915c6a01744feef01881fd2efc..cdd65e8ff0107b510a0eae82ee6d4c2d155106d3 100644 |
| --- a/Source/core/dom/shadow/DistributedNodes.h |
| +++ b/Source/core/dom/shadow/DistributedNodes.h |
| @@ -40,7 +40,7 @@ namespace blink { |
| class DistributedNodes final { |
| DISALLOW_ALLOCATION(); |
| public: |
| - DistributedNodes() { m_nodes.reserveInitialCapacity(32); } |
| + DistributedNodes() { } |
| PassRefPtrWillBeRawPtr<Node> first() const { return m_nodes.first(); } |
| PassRefPtrWillBeRawPtr<Node> last() const { return m_nodes.last(); } |
| @@ -60,8 +60,6 @@ public: |
| void swap(DistributedNodes& other); |
| - const WillBeHeapVector<RefPtrWillBeMember<Node>>& nodes() const { return m_nodes; } |
|
haraken
2015/09/10 07:50:56
This is unused.
|
| - |
| DECLARE_TRACE(); |
| private: |