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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 #include "core/editing/Editor.h" | 101 #include "core/editing/Editor.h" |
102 #include "core/editing/FrameSelection.h" | 102 #include "core/editing/FrameSelection.h" |
103 #include "core/editing/SpellChecker.h" | 103 #include "core/editing/SpellChecker.h" |
104 #include "core/events/BeforeUnloadEvent.h" | 104 #include "core/events/BeforeUnloadEvent.h" |
105 #include "core/events/Event.h" | 105 #include "core/events/Event.h" |
106 #include "core/events/EventFactory.h" | 106 #include "core/events/EventFactory.h" |
107 #include "core/events/EventListener.h" | 107 #include "core/events/EventListener.h" |
108 #include "core/events/HashChangeEvent.h" | 108 #include "core/events/HashChangeEvent.h" |
109 #include "core/events/PageTransitionEvent.h" | 109 #include "core/events/PageTransitionEvent.h" |
110 #include "core/events/ScopedEventQueue.h" | 110 #include "core/events/ScopedEventQueue.h" |
111 #include "core/events/ThreadLocalEventNames.h" | |
112 #include "core/fetch/ResourceFetcher.h" | 111 #include "core/fetch/ResourceFetcher.h" |
113 #include "core/frame/DOMWindow.h" | 112 #include "core/frame/DOMWindow.h" |
114 #include "core/frame/FrameHost.h" | 113 #include "core/frame/FrameHost.h" |
115 #include "core/frame/FrameView.h" | 114 #include "core/frame/FrameView.h" |
116 #include "core/frame/History.h" | 115 #include "core/frame/History.h" |
117 #include "core/frame/LocalFrame.h" | 116 #include "core/frame/LocalFrame.h" |
118 #include "core/frame/PageConsole.h" | 117 #include "core/frame/PageConsole.h" |
119 #include "core/frame/Settings.h" | 118 #include "core/frame/Settings.h" |
120 #include "core/frame/csp/ContentSecurityPolicy.h" | 119 #include "core/frame/csp/ContentSecurityPolicy.h" |
121 #include "core/html/HTMLAllCollection.h" | 120 #include "core/html/HTMLAllCollection.h" |
(...skipping 5342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5464 } | 5463 } |
5465 | 5464 |
5466 void Document::invalidateNodeListCaches(const QualifiedName* attrName) | 5465 void Document::invalidateNodeListCaches(const QualifiedName* attrName) |
5467 { | 5466 { |
5468 HashSet<LiveNodeListBase*>::iterator end = m_listsInvalidatedAtDocument.end(
); | 5467 HashSet<LiveNodeListBase*>::iterator end = m_listsInvalidatedAtDocument.end(
); |
5469 for (HashSet<LiveNodeListBase*>::iterator it = m_listsInvalidatedAtDocument.
begin(); it != end; ++it) | 5468 for (HashSet<LiveNodeListBase*>::iterator it = m_listsInvalidatedAtDocument.
begin(); it != end; ++it) |
5470 (*it)->invalidateCache(attrName); | 5469 (*it)->invalidateCache(attrName); |
5471 } | 5470 } |
5472 | 5471 |
5473 } // namespace WebCore | 5472 } // namespace WebCore |
OLD | NEW |