| 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 11 matching lines...) Expand all Loading... |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef TreeWalker_h | 25 #ifndef TreeWalker_h |
| 26 #define TreeWalker_h | 26 #define TreeWalker_h |
| 27 | 27 |
| 28 #include "bindings/core/v8/ScriptWrappable.h" | 28 #include "bindings/core/v8/ScriptWrappable.h" |
| 29 #include "core/dom/NodeFilter.h" | 29 #include "core/dom/NodeFilter.h" |
| 30 #include "core/dom/NodeIteratorBase.h" | 30 #include "core/dom/NodeIteratorBase.h" |
| 31 #include "platform/heap/Handle.h" | 31 #include "platform/heap/Handle.h" |
| 32 #include "wtf/PassRefPtr.h" | |
| 33 #include "wtf/RefCounted.h" | |
| 34 | 32 |
| 35 namespace blink { | 33 namespace blink { |
| 36 | 34 |
| 37 class ExceptionState; | 35 class ExceptionState; |
| 38 | 36 |
| 39 class TreeWalker final : public GarbageCollected<TreeWalker>, public ScriptWrapp
able, public NodeIteratorBase { | 37 class TreeWalker final : public GarbageCollected<TreeWalker>, public ScriptWrapp
able, public NodeIteratorBase { |
| 40 DEFINE_WRAPPERTYPEINFO(); | 38 DEFINE_WRAPPERTYPEINFO(); |
| 41 USING_GARBAGE_COLLECTED_MIXIN(TreeWalker); | 39 USING_GARBAGE_COLLECTED_MIXIN(TreeWalker); |
| 42 public: | 40 public: |
| 43 static RawPtr<TreeWalker> create(RawPtr<Node> rootNode, unsigned whatToShow,
RawPtr<NodeFilter> filter) | 41 static RawPtr<TreeWalker> create(RawPtr<Node> rootNode, unsigned whatToShow,
RawPtr<NodeFilter> filter) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 TreeWalker(RawPtr<Node>, unsigned whatToShow, RawPtr<NodeFilter>); | 60 TreeWalker(RawPtr<Node>, unsigned whatToShow, RawPtr<NodeFilter>); |
| 63 | 61 |
| 64 Node* setCurrent(RawPtr<Node>); | 62 Node* setCurrent(RawPtr<Node>); |
| 65 | 63 |
| 66 Member<Node> m_current; | 64 Member<Node> m_current; |
| 67 }; | 65 }; |
| 68 | 66 |
| 69 } // namespace blink | 67 } // namespace blink |
| 70 | 68 |
| 71 #endif // TreeWalker_h | 69 #endif // TreeWalker_h |
| OLD | NEW |