| 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 5619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5630 visitor->trace(m_formController); | 5630 visitor->trace(m_formController); |
| 5631 visitor->trace(m_visitedLinkState); | 5631 visitor->trace(m_visitedLinkState); |
| 5632 visitor->trace(m_frame); | 5632 visitor->trace(m_frame); |
| 5633 visitor->trace(m_domWindow); | 5633 visitor->trace(m_domWindow); |
| 5634 visitor->trace(m_fetcher); | 5634 visitor->trace(m_fetcher); |
| 5635 visitor->trace(m_parser); | 5635 visitor->trace(m_parser); |
| 5636 visitor->trace(m_contextFeatures); | 5636 visitor->trace(m_contextFeatures); |
| 5637 visitor->trace(m_styleSheetList); | 5637 visitor->trace(m_styleSheetList); |
| 5638 visitor->trace(m_mediaQueryMatcher); | 5638 visitor->trace(m_mediaQueryMatcher); |
| 5639 visitor->trace(m_scriptedAnimationController); | 5639 visitor->trace(m_scriptedAnimationController); |
| 5640 visitor->trace(m_taskRunner); |
| 5640 visitor->trace(m_textAutosizer); | 5641 visitor->trace(m_textAutosizer); |
| 5641 visitor->trace(m_registrationContext); | 5642 visitor->trace(m_registrationContext); |
| 5642 visitor->trace(m_customElementMicrotaskRunQueue); | 5643 visitor->trace(m_customElementMicrotaskRunQueue); |
| 5643 visitor->trace(m_elementDataCache); | 5644 visitor->trace(m_elementDataCache); |
| 5644 visitor->trace(m_associatedFormControls); | 5645 visitor->trace(m_associatedFormControls); |
| 5645 visitor->trace(m_useElementsNeedingUpdate); | 5646 visitor->trace(m_useElementsNeedingUpdate); |
| 5646 visitor->trace(m_layerUpdateSVGFilterElements); | 5647 visitor->trace(m_layerUpdateSVGFilterElements); |
| 5647 visitor->trace(m_timers); | 5648 visitor->trace(m_timers); |
| 5648 visitor->trace(m_templateDocument); | 5649 visitor->trace(m_templateDocument); |
| 5649 visitor->trace(m_templateDocumentHost); | 5650 visitor->trace(m_templateDocumentHost); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 5670 #ifndef NDEBUG | 5671 #ifndef NDEBUG |
| 5671 using namespace blink; | 5672 using namespace blink; |
| 5672 void showLiveDocumentInstances() | 5673 void showLiveDocumentInstances() |
| 5673 { | 5674 { |
| 5674 Document::WeakDocumentSet& set = Document::liveDocumentSet(); | 5675 Document::WeakDocumentSet& set = Document::liveDocumentSet(); |
| 5675 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5676 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
| 5676 for (Document* document : set) | 5677 for (Document* document : set) |
| 5677 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); | 5678 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str
ing().utf8().data()); |
| 5678 } | 5679 } |
| 5679 #endif | 5680 #endif |
| OLD | NEW |