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

Side by Side Diff: Source/WebCore/dom/DynamicNodeList.h

Issue 10689138: Merge 120868 (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/dom/Document.cpp ('k') | Source/WebCore/dom/Node.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, 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
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
OLDNEW
« no previous file with comments | « Source/WebCore/dom/Document.cpp ('k') | Source/WebCore/dom/Node.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698