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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 #include "core/rendering/TextAutosizer.h" | 171 #include "core/rendering/TextAutosizer.h" |
172 #include "core/svg/SVGDocumentExtensions.h" | 172 #include "core/svg/SVGDocumentExtensions.h" |
173 #include "core/svg/SVGFontFaceElement.h" | 173 #include "core/svg/SVGFontFaceElement.h" |
174 #include "core/svg/SVGStyleElement.h" | 174 #include "core/svg/SVGStyleElement.h" |
175 #include "core/svg/SVGUseElement.h" | 175 #include "core/svg/SVGUseElement.h" |
176 #include "core/workers/SharedWorkerRepositoryClient.h" | 176 #include "core/workers/SharedWorkerRepositoryClient.h" |
177 #include "core/xml/XSLTProcessor.h" | 177 #include "core/xml/XSLTProcessor.h" |
178 #include "core/xml/parser/XMLDocumentParser.h" | 178 #include "core/xml/parser/XMLDocumentParser.h" |
179 #include "platform/DateComponents.h" | 179 #include "platform/DateComponents.h" |
180 #include "platform/Language.h" | 180 #include "platform/Language.h" |
181 #include "platform/TraceEvent.h" | |
182 #include "platform/network/ContentSecurityPolicyParsers.h" | 181 #include "platform/network/ContentSecurityPolicyParsers.h" |
183 #include "platform/network/HTTPParsers.h" | 182 #include "platform/network/HTTPParsers.h" |
184 #include "platform/scroll/ScrollbarTheme.h" | 183 #include "platform/scroll/ScrollbarTheme.h" |
185 #include "platform/text/PlatformLocale.h" | 184 #include "platform/text/PlatformLocale.h" |
186 #include "platform/text/SegmentedString.h" | 185 #include "platform/text/SegmentedString.h" |
187 #include "platform/weborigin/OriginAccessEntry.h" | 186 #include "platform/weborigin/OriginAccessEntry.h" |
188 #include "platform/weborigin/SchemeRegistry.h" | 187 #include "platform/weborigin/SchemeRegistry.h" |
189 #include "platform/weborigin/SecurityOrigin.h" | 188 #include "platform/weborigin/SecurityOrigin.h" |
190 #include "wtf/CurrentTime.h" | 189 #include "wtf/CurrentTime.h" |
191 #include "wtf/HashFunctions.h" | 190 #include "wtf/HashFunctions.h" |
192 #include "wtf/MainThread.h" | 191 #include "wtf/MainThread.h" |
193 #include "wtf/StdLibExtras.h" | 192 #include "wtf/StdLibExtras.h" |
194 #include "wtf/TemporaryChange.h" | 193 #include "wtf/TemporaryChange.h" |
| 194 #include "wtf/TraceEvent.h" |
195 #include "wtf/text/StringBuffer.h" | 195 #include "wtf/text/StringBuffer.h" |
196 #include "wtf/text/TextEncodingRegistry.h" | 196 #include "wtf/text/TextEncodingRegistry.h" |
197 | 197 |
198 using namespace std; | 198 using namespace std; |
199 using namespace WTF; | 199 using namespace WTF; |
200 using namespace Unicode; | 200 using namespace Unicode; |
201 | 201 |
202 namespace WebCore { | 202 namespace WebCore { |
203 | 203 |
204 using namespace HTMLNames; | 204 using namespace HTMLNames; |
(...skipping 5260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5465 } | 5465 } |
5466 | 5466 |
5467 void Document::invalidateNodeListCaches(const QualifiedName* attrName) | 5467 void Document::invalidateNodeListCaches(const QualifiedName* attrName) |
5468 { | 5468 { |
5469 HashSet<LiveNodeListBase*>::iterator end = m_listsInvalidatedAtDocument.end(
); | 5469 HashSet<LiveNodeListBase*>::iterator end = m_listsInvalidatedAtDocument.end(
); |
5470 for (HashSet<LiveNodeListBase*>::iterator it = m_listsInvalidatedAtDocument.
begin(); it != end; ++it) | 5470 for (HashSet<LiveNodeListBase*>::iterator it = m_listsInvalidatedAtDocument.
begin(); it != end; ++it) |
5471 (*it)->invalidateCache(attrName); | 5471 (*it)->invalidateCache(attrName); |
5472 } | 5472 } |
5473 | 5473 |
5474 } // namespace WebCore | 5474 } // namespace WebCore |
OLD | NEW |