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

Side by Side Diff: Source/core/dom/ChildNodeList.cpp

Issue 280123002: Oilpan: move LiveNodeList collections to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have NodeRareData clear out NodeListsNodeData instead. Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « Source/core/dom/ChildNodeList.h ('k') | Source/core/dom/ClassCollection.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2014 Samsung Electronics. All rights reserved. 6 * Copyright (C) 2014 Samsung Electronics. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 23 matching lines...) Expand all
34 { 34 {
35 } 35 }
36 36
37 Node* ChildNodeList::virtualOwnerNode() const 37 Node* ChildNodeList::virtualOwnerNode() const
38 { 38 {
39 return &ownerNode(); 39 return &ownerNode();
40 } 40 }
41 41
42 ChildNodeList::~ChildNodeList() 42 ChildNodeList::~ChildNodeList()
43 { 43 {
44 #if !ENABLE(OILPAN)
44 m_parent->nodeLists()->removeChildNodeList(this); 45 m_parent->nodeLists()->removeChildNodeList(this);
46 #endif
45 } 47 }
46 48
47 Node* ChildNodeList::traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const 49 Node* ChildNodeList::traverseForwardToOffset(unsigned offset, Node& currentNode, unsigned& currentOffset) const
48 { 50 {
49 ASSERT(currentOffset < offset); 51 ASSERT(currentOffset < offset);
50 Node* next = &currentNode; 52 Node* next = &currentNode;
51 while ((next = next->nextSibling())) { 53 while ((next = next->nextSibling())) {
52 if (++currentOffset == offset) 54 if (++currentOffset == offset)
53 return next; 55 return next;
54 } 56 }
55 return 0; 57 return 0;
56 } 58 }
57 59
58 Node* ChildNodeList::traverseBackwardToOffset(unsigned offset, Node& currentNode , unsigned& currentOffset) const 60 Node* ChildNodeList::traverseBackwardToOffset(unsigned offset, Node& currentNode , unsigned& currentOffset) const
59 { 61 {
60 ASSERT(currentOffset > offset); 62 ASSERT(currentOffset > offset);
61 Node* previous = &currentNode; 63 Node* previous = &currentNode;
62 while ((previous = previous->previousSibling())) { 64 while ((previous = previous->previousSibling())) {
63 if (--currentOffset == offset) 65 if (--currentOffset == offset)
64 return previous; 66 return previous;
65 } 67 }
66 return 0; 68 return 0;
67 } 69 }
68 70
71 void ChildNodeList::trace(Visitor* visitor)
72 {
73 visitor->trace(m_parent);
74 visitor->trace(m_collectionIndexCache);
75 NodeList::trace(visitor);
76 }
77
69 } // namespace WebCore 78 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/ChildNodeList.h ('k') | Source/core/dom/ClassCollection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698