| OLD | NEW |
| 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, 2006, 2007 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 class DynamicSubtreeNodeList : public DynamicNodeList { | 97 class DynamicSubtreeNodeList : public DynamicNodeList { |
| 98 public: | 98 public: |
| 99 virtual ~DynamicSubtreeNodeList(); | 99 virtual ~DynamicSubtreeNodeList(); |
| 100 virtual unsigned length() const OVERRIDE; | 100 virtual unsigned length() const OVERRIDE; |
| 101 virtual Node* item(unsigned index) const OVERRIDE; | 101 virtual Node* item(unsigned index) const OVERRIDE; |
| 102 | 102 |
| 103 protected: | 103 protected: |
| 104 DynamicSubtreeNodeList(PassRefPtr<Node>, RootType = RootedAtNode); | 104 DynamicSubtreeNodeList(PassRefPtr<Node>, RootType = RootedAtNode); |
| 105 | 105 |
| 106 private: | 106 private: |
| 107 using DynamicNodeList::invalidateCache; | |
| 108 friend struct NodeListsNodeData; | |
| 109 | |
| 110 Node* itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOff
set) const; | 107 Node* itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOff
set) const; |
| 111 Node* itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOf
fset) const; | 108 Node* itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOf
fset) const; |
| 112 }; | 109 }; |
| 113 | 110 |
| 114 } // namespace WebCore | 111 } // namespace WebCore |
| 115 | 112 |
| 116 #endif // DynamicNodeList_h | 113 #endif // DynamicNodeList_h |
| OLD | NEW |