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

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

Issue 1833303002: [Not committed] Make image load completion async and remove EventSender from ImageLoader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Loader_asyncImageLoadEvent_1
Patch Set: cleanup, fix new layout tests Created 4 years, 8 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 #include "core/layout/HitTestResult.h" 174 #include "core/layout/HitTestResult.h"
175 #include "core/layout/LayoutPart.h" 175 #include "core/layout/LayoutPart.h"
176 #include "core/layout/LayoutView.h" 176 #include "core/layout/LayoutView.h"
177 #include "core/layout/TextAutosizer.h" 177 #include "core/layout/TextAutosizer.h"
178 #include "core/layout/compositing/PaintLayerCompositor.h" 178 #include "core/layout/compositing/PaintLayerCompositor.h"
179 #include "core/loader/CookieJar.h" 179 #include "core/loader/CookieJar.h"
180 #include "core/loader/DocumentLoader.h" 180 #include "core/loader/DocumentLoader.h"
181 #include "core/loader/FrameFetchContext.h" 181 #include "core/loader/FrameFetchContext.h"
182 #include "core/loader/FrameLoader.h" 182 #include "core/loader/FrameLoader.h"
183 #include "core/loader/FrameLoaderClient.h" 183 #include "core/loader/FrameLoaderClient.h"
184 #include "core/loader/ImageLoader.h"
185 #include "core/loader/NavigationScheduler.h" 184 #include "core/loader/NavigationScheduler.h"
186 #include "core/loader/appcache/ApplicationCacheHost.h" 185 #include "core/loader/appcache/ApplicationCacheHost.h"
187 #include "core/origin_trials/DocumentOriginTrialContext.h" 186 #include "core/origin_trials/DocumentOriginTrialContext.h"
188 #include "core/page/ChromeClient.h" 187 #include "core/page/ChromeClient.h"
189 #include "core/page/EventWithHitTestResults.h" 188 #include "core/page/EventWithHitTestResults.h"
190 #include "core/page/FocusController.h" 189 #include "core/page/FocusController.h"
191 #include "core/page/FrameTree.h" 190 #include "core/page/FrameTree.h"
192 #include "core/page/Page.h" 191 #include "core/page/Page.h"
193 #include "core/page/PointerLockController.h" 192 #include "core/page/PointerLockController.h"
194 #include "core/page/scrolling/ScrollingCoordinator.h" 193 #include "core/page/scrolling/ScrollingCoordinator.h"
(...skipping 2460 matching lines...) Expand 10 before | Expand all | Expand 10 after
2655 m_loadEventProgress = LoadEventInProgress; 2654 m_loadEventProgress = LoadEventInProgress;
2656 2655
2657 ScriptableDocumentParser* parser = scriptableDocumentParser(); 2656 ScriptableDocumentParser* parser = scriptableDocumentParser();
2658 m_wellFormed = parser && parser->wellFormed(); 2657 m_wellFormed = parser && parser->wellFormed();
2659 2658
2660 // We have to clear the parser, in case someone document.write()s from the 2659 // We have to clear the parser, in case someone document.write()s from the
2661 // onLoad event handler, as in Radar 3206524. 2660 // onLoad event handler, as in Radar 3206524.
2662 detachParser(); 2661 detachParser();
2663 2662
2664 if (frame() && frame()->script().canExecuteScripts(NotAboutToExecuteScript)) { 2663 if (frame() && frame()->script().canExecuteScripts(NotAboutToExecuteScript)) {
2665 ImageLoader::dispatchPendingLoadEvents();
2666 ImageLoader::dispatchPendingErrorEvents();
2667
2668 HTMLLinkElement::dispatchPendingLoadEvents(); 2664 HTMLLinkElement::dispatchPendingLoadEvents();
2669 HTMLStyleElement::dispatchPendingLoadEvents(); 2665 HTMLStyleElement::dispatchPendingLoadEvents();
2670 } 2666 }
2671 2667
2672 // JS running below could remove the frame or destroy the LayoutView so we c all 2668 // JS running below could remove the frame or destroy the LayoutView so we c all
2673 // those two functions repeatedly and don't save them on the stack. 2669 // those two functions repeatedly and don't save them on the stack.
2674 2670
2675 // To align the HTML load event and the SVGLoad event for the outermost <svg > element, fire it from 2671 // To align the HTML load event and the SVGLoad event for the outermost <svg > element, fire it from
2676 // here, instead of doing it from SVGElement::finishedParsingChildren. 2672 // here, instead of doing it from SVGElement::finishedParsingChildren.
2677 if (svgExtensions()) 2673 if (svgExtensions())
(...skipping 3356 matching lines...) Expand 10 before | Expand all | Expand 10 after
6034 #ifndef NDEBUG 6030 #ifndef NDEBUG
6035 using namespace blink; 6031 using namespace blink;
6036 void showLiveDocumentInstances() 6032 void showLiveDocumentInstances()
6037 { 6033 {
6038 Document::WeakDocumentSet& set = Document::liveDocumentSet(); 6034 Document::WeakDocumentSet& set = Document::liveDocumentSet();
6039 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6035 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6040 for (Document* document : set) 6036 for (Document* document : set)
6041 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6037 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6042 } 6038 }
6043 #endif 6039 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698