| 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, 2007 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2007 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2010 Nokia Inc. All rights reserved. | 6 * Copyright (C) 2010 Nokia 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 14 matching lines...) Expand all Loading... |
| 25 #ifndef LabelsNodeList_h | 25 #ifndef LabelsNodeList_h |
| 26 #define LabelsNodeList_h | 26 #define LabelsNodeList_h |
| 27 | 27 |
| 28 #include "DynamicNodeList.h" | 28 #include "DynamicNodeList.h" |
| 29 #include <wtf/PassRefPtr.h> | 29 #include <wtf/PassRefPtr.h> |
| 30 | 30 |
| 31 namespace WebCore { | 31 namespace WebCore { |
| 32 | 32 |
| 33 class LabelsNodeList : public DynamicSubtreeNodeList { | 33 class LabelsNodeList : public DynamicSubtreeNodeList { |
| 34 public: | 34 public: |
| 35 static PassRefPtr<LabelsNodeList> create(Node* forNode) | 35 static PassRefPtr<LabelsNodeList> create(Node* forNode, const AtomicString&) |
| 36 { | 36 { |
| 37 return adoptRef(new LabelsNodeList(forNode)); | 37 return adoptRef(new LabelsNodeList(forNode)); |
| 38 } | 38 } |
| 39 ~LabelsNodeList(); | 39 ~LabelsNodeList(); |
| 40 | 40 |
| 41 protected: | 41 protected: |
| 42 LabelsNodeList(Node* forNode); | 42 LabelsNodeList(Node* forNode); |
| 43 | 43 |
| 44 virtual bool nodeMatches(Element*) const; | 44 virtual bool nodeMatches(Element*) const; |
| 45 | |
| 46 private: | |
| 47 RefPtr<Node> m_forNode; | |
| 48 }; | 45 }; |
| 49 | 46 |
| 50 } // namespace WebCore | 47 } // namespace WebCore |
| 51 | 48 |
| 52 #endif // LabelsNodeList_h | 49 #endif // LabelsNodeList_h |
| OLD | NEW |