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

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

Issue 1615803004: Avoid double download for late discovered link preload resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 11 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 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 4730 matching lines...) Expand 10 before | Expand all | Expand 10 after
4741 InspectorInstrumentation::domContentLoadedEventFired(frame.get()); 4741 InspectorInstrumentation::domContentLoadedEventFired(frame.get());
4742 } 4742 }
4743 4743
4744 // Schedule dropping of the ElementDataCache. We keep it alive for a while a fter parsing finishes 4744 // Schedule dropping of the ElementDataCache. We keep it alive for a while a fter parsing finishes
4745 // so that dynamically inserted content can also benefit from sharing optimi zations. 4745 // so that dynamically inserted content can also benefit from sharing optimi zations.
4746 // Note that we don't refresh the timer on cache access since that could lea d to huge caches being kept 4746 // Note that we don't refresh the timer on cache access since that could lea d to huge caches being kept
4747 // alive indefinitely by something innocuous like JS setting .innerHTML repe atedly on a timer. 4747 // alive indefinitely by something innocuous like JS setting .innerHTML repe atedly on a timer.
4748 m_elementDataCacheClearTimer.startOneShot(10, BLINK_FROM_HERE); 4748 m_elementDataCacheClearTimer.startOneShot(10, BLINK_FROM_HERE);
4749 4749
4750 // Parser should have picked up all preloads by now 4750 // Parser should have picked up all preloads by now
4751 m_fetcher->clearPreloads(); 4751 m_fetcher->clearPreloads(ResourceFetcher::ClearSpeculativeMarkupPreloads);
4752 } 4752 }
4753 4753
4754 void Document::elementDataCacheClearTimerFired(Timer<Document>*) 4754 void Document::elementDataCacheClearTimerFired(Timer<Document>*)
4755 { 4755 {
4756 m_elementDataCache.clear(); 4756 m_elementDataCache.clear();
4757 } 4757 }
4758 4758
4759 Vector<IconURL> Document::iconURLs(int iconTypesMask) 4759 Vector<IconURL> Document::iconURLs(int iconTypesMask)
4760 { 4760 {
4761 IconURL firstFavicon; 4761 IconURL firstFavicon;
(...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after
5916 #ifndef NDEBUG 5916 #ifndef NDEBUG
5917 using namespace blink; 5917 using namespace blink;
5918 void showLiveDocumentInstances() 5918 void showLiveDocumentInstances()
5919 { 5919 {
5920 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 5920 Document::WeakDocumentSet& set = Document::liveDocumentSet();
5921 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 5921 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
5922 for (Document* document : set) 5922 for (Document* document : set)
5923 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data()); 5923 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().str ing().utf8().data());
5924 } 5924 }
5925 #endif 5925 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698