| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no) | 3 * Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no) |
| 4 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 4 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 6 * Copyright (C) 2004, 2008 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2008 Apple Inc. 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 22 matching lines...) Expand all Loading... |
| 33 namespace blink { | 33 namespace blink { |
| 34 | 34 |
| 35 TreeWalker::TreeWalker(RawPtr<Node> rootNode, unsigned whatToShow, RawPtr<NodeFi
lter> filter) | 35 TreeWalker::TreeWalker(RawPtr<Node> rootNode, unsigned whatToShow, RawPtr<NodeFi
lter> filter) |
| 36 : NodeIteratorBase(rootNode, whatToShow, filter) | 36 : NodeIteratorBase(rootNode, whatToShow, filter) |
| 37 , m_current(root()) | 37 , m_current(root()) |
| 38 { | 38 { |
| 39 } | 39 } |
| 40 | 40 |
| 41 void TreeWalker::setCurrentNode(RawPtr<Node> node) | 41 void TreeWalker::setCurrentNode(RawPtr<Node> node) |
| 42 { | 42 { |
| 43 ASSERT(node); | 43 DCHECK(node); |
| 44 m_current = node; | 44 m_current = node; |
| 45 } | 45 } |
| 46 | 46 |
| 47 inline Node* TreeWalker::setCurrent(RawPtr<Node> node) | 47 inline Node* TreeWalker::setCurrent(RawPtr<Node> node) |
| 48 { | 48 { |
| 49 m_current = node; | 49 m_current = node; |
| 50 return m_current.get(); | 50 return m_current.get(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 Node* TreeWalker::parentNode(ExceptionState& exceptionState) | 53 Node* TreeWalker::parentNode(ExceptionState& exceptionState) |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 return 0; | 272 return 0; |
| 273 } | 273 } |
| 274 | 274 |
| 275 DEFINE_TRACE(TreeWalker) | 275 DEFINE_TRACE(TreeWalker) |
| 276 { | 276 { |
| 277 visitor->trace(m_current); | 277 visitor->trace(m_current); |
| 278 NodeIteratorBase::trace(visitor); | 278 NodeIteratorBase::trace(visitor); |
| 279 } | 279 } |
| 280 | 280 |
| 281 } // namespace blink | 281 } // namespace blink |
| OLD | NEW |