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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 #include "core/dom/VisitedLinkState.h" | 100 #include "core/dom/VisitedLinkState.h" |
101 #include "core/dom/XMLDocument.h" | 101 #include "core/dom/XMLDocument.h" |
102 #include "core/dom/custom/CustomElementMicrotaskRunQueue.h" | 102 #include "core/dom/custom/CustomElementMicrotaskRunQueue.h" |
103 #include "core/dom/custom/CustomElementRegistrationContext.h" | 103 #include "core/dom/custom/CustomElementRegistrationContext.h" |
104 #include "core/dom/shadow/ComposedTreeTraversal.h" | 104 #include "core/dom/shadow/ComposedTreeTraversal.h" |
105 #include "core/dom/shadow/ElementShadow.h" | 105 #include "core/dom/shadow/ElementShadow.h" |
106 #include "core/dom/shadow/ShadowRoot.h" | 106 #include "core/dom/shadow/ShadowRoot.h" |
107 #include "core/editing/DragCaretController.h" | 107 #include "core/editing/DragCaretController.h" |
108 #include "core/editing/Editor.h" | 108 #include "core/editing/Editor.h" |
109 #include "core/editing/FrameSelection.h" | 109 #include "core/editing/FrameSelection.h" |
110 #include "core/editing/Serialization.h" | |
111 #include "core/editing/markers/DocumentMarkerController.h" | 110 #include "core/editing/markers/DocumentMarkerController.h" |
| 111 #include "core/editing/serializers/Serialization.h" |
112 #include "core/editing/spellcheck/SpellChecker.h" | 112 #include "core/editing/spellcheck/SpellChecker.h" |
113 #include "core/events/BeforeUnloadEvent.h" | 113 #include "core/events/BeforeUnloadEvent.h" |
114 #include "core/events/Event.h" | 114 #include "core/events/Event.h" |
115 #include "core/events/EventFactory.h" | 115 #include "core/events/EventFactory.h" |
116 #include "core/events/EventListener.h" | 116 #include "core/events/EventListener.h" |
117 #include "core/events/HashChangeEvent.h" | 117 #include "core/events/HashChangeEvent.h" |
118 #include "core/events/PageTransitionEvent.h" | 118 #include "core/events/PageTransitionEvent.h" |
119 #include "core/events/ScopedEventQueue.h" | 119 #include "core/events/ScopedEventQueue.h" |
120 #include "core/fetch/ResourceFetcher.h" | 120 #include "core/fetch/ResourceFetcher.h" |
121 #include "core/frame/DOMTimer.h" | 121 #include "core/frame/DOMTimer.h" |
(...skipping 5548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5670 #ifndef NDEBUG | 5670 #ifndef NDEBUG |
5671 using namespace blink; | 5671 using namespace blink; |
5672 void showLiveDocumentInstances() | 5672 void showLiveDocumentInstances() |
5673 { | 5673 { |
5674 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5674 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
5675 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5675 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5676 for (Document* document : set) | 5676 for (Document* document : set) |
5677 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5677 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
5678 } | 5678 } |
5679 #endif | 5679 #endif |
OLD | NEW |