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

Side by Side Diff: Source/core/dom/LiveNodeList.cpp

Issue 109013007: Remove dead code from LiveNodeListBase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 12 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/LiveNodeList.h ('k') | no next file » | 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, 2008, 2010 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2006, 2007, 2008, 2010 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 return 0; 42 return 0;
43 return toContainerNode(&rootNode); 43 return toContainerNode(&rootNode);
44 } 44 }
45 45
46 void LiveNodeListBase::invalidateCache() const 46 void LiveNodeListBase::invalidateCache() const
47 { 47 {
48 m_cachedItem = 0; 48 m_cachedItem = 0;
49 m_isLengthCacheValid = false; 49 m_isLengthCacheValid = false;
50 m_isItemCacheValid = false; 50 m_isItemCacheValid = false;
51 m_isNameCacheValid = false; 51 m_isNameCacheValid = false;
52 m_isItemRefElementsCacheValid = false;
53 if (isNodeList(type())) 52 if (isNodeList(type()))
54 return; 53 return;
55 54
56 const HTMLCollection* cacheBase = static_cast<const HTMLCollection*>(this); 55 const HTMLCollection* cacheBase = static_cast<const HTMLCollection*>(this);
57 cacheBase->m_idCache.clear(); 56 cacheBase->m_idCache.clear();
58 cacheBase->m_nameCache.clear(); 57 cacheBase->m_nameCache.clear();
59 cacheBase->m_cachedElementsArrayOffset = 0; 58 cacheBase->m_cachedElementsArrayOffset = 0;
60 } 59 }
61 60
62 void LiveNodeListBase::invalidateIdNameCacheMaps() const 61 void LiveNodeListBase::invalidateIdNameCacheMaps() const
(...skipping 22 matching lines...) Expand all
85 Node* node = item(i); 84 Node* node = item(i);
86 // FIXME: This should probably be using getIdAttribute instead of idForS tyleResolution. 85 // FIXME: This should probably be using getIdAttribute instead of idForS tyleResolution.
87 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI d) 86 if (node->hasID() && toElement(node)->idForStyleResolution() == elementI d)
88 return node; 87 return node;
89 } 88 }
90 89
91 return 0; 90 return 0;
92 } 91 }
93 92
94 } // namespace WebCore 93 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/LiveNodeList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698