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

Side by Side Diff: Source/WebCore/html/LabelsNodeList.h

Issue 10695128: Merge 120979 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 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/WebCore/html/LabelableElement.cpp ('k') | Source/WebCore/html/LabelsNodeList.cpp » ('j') | 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, 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
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
OLDNEW
« no previous file with comments | « Source/WebCore/html/LabelableElement.cpp ('k') | Source/WebCore/html/LabelsNodeList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698