Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2721273002: Merge 3026: Revert of Move the FontFaceCache stored in CSSFontSelector to be stored in Document. (p… (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 10 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
(...skipping 6582 matching lines...) Expand 10 before | Expand all | Expand 10 after
6593 visitor->trace(m_elementDataCache); 6593 visitor->trace(m_elementDataCache);
6594 visitor->trace(m_useElementsNeedingUpdate); 6594 visitor->trace(m_useElementsNeedingUpdate);
6595 visitor->trace(m_timers); 6595 visitor->trace(m_timers);
6596 visitor->trace(m_templateDocument); 6596 visitor->trace(m_templateDocument);
6597 visitor->trace(m_templateDocumentHost); 6597 visitor->trace(m_templateDocumentHost);
6598 visitor->trace(m_userActionElements); 6598 visitor->trace(m_userActionElements);
6599 visitor->trace(m_svgExtensions); 6599 visitor->trace(m_svgExtensions);
6600 visitor->trace(m_timeline); 6600 visitor->trace(m_timeline);
6601 visitor->trace(m_compositorPendingAnimations); 6601 visitor->trace(m_compositorPendingAnimations);
6602 visitor->trace(m_contextDocument); 6602 visitor->trace(m_contextDocument);
6603 visitor->trace(m_fontFaceCache);
6604 visitor->trace(m_canvasFontCache); 6603 visitor->trace(m_canvasFontCache);
6605 visitor->trace(m_intersectionObserverController); 6604 visitor->trace(m_intersectionObserverController);
6606 visitor->trace(m_snapCoordinator); 6605 visitor->trace(m_snapCoordinator);
6607 visitor->trace(m_resizeObserverController); 6606 visitor->trace(m_resizeObserverController);
6608 visitor->trace(m_propertyRegistry); 6607 visitor->trace(m_propertyRegistry);
6609 visitor->trace(m_styleReattachDataMap); 6608 visitor->trace(m_styleReattachDataMap);
6610 visitor->trace(m_networkStateObserver); 6609 visitor->trace(m_networkStateObserver);
6611 Supplementable<Document>::trace(visitor); 6610 Supplementable<Document>::trace(visitor);
6612 TreeScope::trace(visitor); 6611 TreeScope::trace(visitor);
6613 ContainerNode::trace(visitor); 6612 ContainerNode::trace(visitor);
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
6661 } 6660 }
6662 6661
6663 void showLiveDocumentInstances() { 6662 void showLiveDocumentInstances() {
6664 WeakDocumentSet& set = liveDocumentSet(); 6663 WeakDocumentSet& set = liveDocumentSet();
6665 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6664 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6666 for (blink::Document* document : set) 6665 for (blink::Document* document : set)
6667 fprintf(stderr, "- Document %p URL: %s\n", document, 6666 fprintf(stderr, "- Document %p URL: %s\n", document,
6668 document->url().getString().utf8().data()); 6667 document->url().getString().utf8().data());
6669 } 6668 }
6670 #endif 6669 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.h ('k') | third_party/WebKit/Source/core/dom/StyleEngine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698