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 5876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5887 visitor->trace(m_svgExtensions); | 5887 visitor->trace(m_svgExtensions); |
5888 visitor->trace(m_timeline); | 5888 visitor->trace(m_timeline); |
5889 visitor->trace(m_compositorPendingAnimations); | 5889 visitor->trace(m_compositorPendingAnimations); |
5890 visitor->trace(m_contextDocument); | 5890 visitor->trace(m_contextDocument); |
5891 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); | 5891 visitor->registerWeakMembers<Document, &Document::clearWeakMembers>(this); |
5892 #endif | 5892 #endif |
5893 DocumentSupplementable::trace(visitor); | 5893 DocumentSupplementable::trace(visitor); |
5894 TreeScope::trace(visitor); | 5894 TreeScope::trace(visitor); |
5895 ContainerNode::trace(visitor); | 5895 ContainerNode::trace(visitor); |
5896 ExecutionContext::trace(visitor); | 5896 ExecutionContext::trace(visitor); |
| 5897 LifecycleContext<Document>::trace(visitor); |
5897 } | 5898 } |
5898 | 5899 |
5899 } // namespace blink | 5900 } // namespace blink |
5900 | 5901 |
5901 #ifndef NDEBUG | 5902 #ifndef NDEBUG |
5902 using namespace blink; | 5903 using namespace blink; |
5903 void showLiveDocumentInstances() | 5904 void showLiveDocumentInstances() |
5904 { | 5905 { |
5905 WeakDocumentSet& set = liveDocumentSet(); | 5906 WeakDocumentSet& set = liveDocumentSet(); |
5906 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); | 5907 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); |
5907 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { | 5908 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it
) { |
5908 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); | 5909 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut
f8().data()); |
5909 } | 5910 } |
5910 } | 5911 } |
5911 #endif | 5912 #endif |
OLD | NEW |