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

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

Issue 126123004: Remove no longer used methods nextAncestorSibling() from NodeTraversal.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/NodeTraversal.h ('k') | no next file » | 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, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 return next; 67 return next;
68 for (Node* parent = current.parentNode(); parent; parent = parent->parentNod e()) { 68 for (Node* parent = current.parentNode(); parent; parent = parent->parentNod e()) {
69 if (parent == stayWithin) 69 if (parent == stayWithin)
70 return 0; 70 return 0;
71 if (Node* next = parent->pseudoAwareNextSibling()) 71 if (Node* next = parent->pseudoAwareNextSibling())
72 return next; 72 return next;
73 } 73 }
74 return 0; 74 return 0;
75 } 75 }
76 76
77 Node* nextAncestorSibling(const Node& current)
78 {
79 ASSERT(!current.nextSibling());
80 for (Node* parent = current.parentNode(); parent; parent = parent->parentNod e()) {
81 if (parent->nextSibling())
82 return parent->nextSibling();
83 }
84 return 0;
85 }
86
87 Node* nextAncestorSibling(const Node& current, const Node* stayWithin)
88 {
89 ASSERT(!current.nextSibling());
90 ASSERT(current != stayWithin);
91 for (Node* parent = current.parentNode(); parent; parent = parent->parentNod e()) {
92 if (parent == stayWithin)
93 return 0;
94 if (parent->nextSibling())
95 return parent->nextSibling();
96 }
97 return 0;
98 }
99
100 Node* previous(const Node& current, const Node* stayWithin) 77 Node* previous(const Node& current, const Node* stayWithin)
101 { 78 {
102 if (current == stayWithin) 79 if (current == stayWithin)
103 return 0; 80 return 0;
104 if (current.previousSibling()) { 81 if (current.previousSibling()) {
105 Node* previous = current.previousSibling(); 82 Node* previous = current.previousSibling();
106 while (previous->lastChild()) 83 while (previous->lastChild())
107 previous = previous->lastChild(); 84 previous = previous->lastChild();
108 return previous; 85 return previous;
109 } 86 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 { 141 {
165 if (current == stayWithin) 142 if (current == stayWithin)
166 return 0; 143 return 0;
167 if (current.previousSibling()) 144 if (current.previousSibling())
168 return current.previousSibling(); 145 return current.previousSibling();
169 return previousAncestorSiblingPostOrder(current, stayWithin); 146 return previousAncestorSiblingPostOrder(current, stayWithin);
170 } 147 }
171 148
172 } 149 }
173 } 150 }
OLDNEW
« no previous file with comments | « Source/core/dom/NodeTraversal.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698