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 5926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5937 visitor->trace(m_frame); | 5937 visitor->trace(m_frame); |
5938 visitor->trace(m_domWindow); | 5938 visitor->trace(m_domWindow); |
5939 visitor->trace(m_fetcher); | 5939 visitor->trace(m_fetcher); |
5940 visitor->trace(m_parser); | 5940 visitor->trace(m_parser); |
5941 visitor->trace(m_contextFeatures); | 5941 visitor->trace(m_contextFeatures); |
5942 visitor->trace(m_styleSheetList); | 5942 visitor->trace(m_styleSheetList); |
5943 visitor->trace(m_documentTiming); | 5943 visitor->trace(m_documentTiming); |
5944 visitor->trace(m_mediaQueryMatcher); | 5944 visitor->trace(m_mediaQueryMatcher); |
5945 visitor->trace(m_scriptedAnimationController); | 5945 visitor->trace(m_scriptedAnimationController); |
5946 visitor->trace(m_scriptedIdleTaskController); | 5946 visitor->trace(m_scriptedIdleTaskController); |
5947 visitor->trace(m_taskRunner); | |
5948 visitor->trace(m_textAutosizer); | 5947 visitor->trace(m_textAutosizer); |
5949 visitor->trace(m_registrationContext); | 5948 visitor->trace(m_registrationContext); |
5950 visitor->trace(m_customElementMicrotaskRunQueue); | 5949 visitor->trace(m_customElementMicrotaskRunQueue); |
5951 visitor->trace(m_elementDataCache); | 5950 visitor->trace(m_elementDataCache); |
5952 visitor->trace(m_associatedFormControls); | 5951 visitor->trace(m_associatedFormControls); |
5953 visitor->trace(m_useElementsNeedingUpdate); | 5952 visitor->trace(m_useElementsNeedingUpdate); |
5954 visitor->trace(m_layerUpdateSVGFilterElements); | 5953 visitor->trace(m_layerUpdateSVGFilterElements); |
5955 visitor->trace(m_timers); | 5954 visitor->trace(m_timers); |
5956 visitor->trace(m_templateDocument); | 5955 visitor->trace(m_templateDocument); |
5957 visitor->trace(m_templateDocumentHost); | 5956 visitor->trace(m_templateDocumentHost); |
(...skipping 21 matching lines...) Expand all Loading... |
5979 #ifndef NDEBUG | 5978 #ifndef NDEBUG |
5980 using namespace blink; | 5979 using namespace blink; |
5981 void showLiveDocumentInstances() | 5980 void showLiveDocumentInstances() |
5982 { | 5981 { |
5983 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5982 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
5984 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5983 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5985 for (Document* document : set) | 5984 for (Document* document : set) |
5986 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); | 5985 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get
String().utf8().data()); |
5987 } | 5986 } |
5988 #endif | 5987 #endif |
OLD | NEW |