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

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

Issue 2224923002: Use Networking task source for parser tasks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3013 matching lines...) Expand 10 before | Expand all | Expand 10 after
3024 // Only imports on master documents can trigger rendering. 3024 // Only imports on master documents can trigger rendering.
3025 if (HTMLImportLoader* import = importLoader()) 3025 if (HTMLImportLoader* import = importLoader())
3026 import->didRemoveAllPendingStylesheet(); 3026 import->didRemoveAllPendingStylesheet();
3027 if (!haveImportsLoaded()) 3027 if (!haveImportsLoaded())
3028 return; 3028 return;
3029 didLoadAllScriptBlockingResources(); 3029 didLoadAllScriptBlockingResources();
3030 } 3030 }
3031 3031
3032 void Document::didLoadAllScriptBlockingResources() 3032 void Document::didLoadAllScriptBlockingResources()
3033 { 3033 {
3034 TaskRunnerHelper::getLoadingTaskRunner(this)->postTask(BLINK_FROM_HERE, m_ex ecuteScriptsWaitingForResourcesTask->cancelAndCreate()); 3034 TaskRunnerHelper::get(TaskType::Networking, this)->postTask(BLINK_FROM_HERE, m_executeScriptsWaitingForResourcesTask->cancelAndCreate());
3035 3035
3036 if (isHTMLDocument() && body()) { 3036 if (isHTMLDocument() && body()) {
3037 // For HTML if we have no more stylesheets to load and we're past the bo dy 3037 // For HTML if we have no more stylesheets to load and we're past the bo dy
3038 // tag, we should have something to paint so resume. 3038 // tag, we should have something to paint so resume.
3039 beginLifecycleUpdatesIfRenderingReady(); 3039 beginLifecycleUpdatesIfRenderingReady();
3040 } else if (!isHTMLDocument() && documentElement()) { 3040 } else if (!isHTMLDocument() && documentElement()) {
3041 // For non-HTML there is no body so resume as soon as the sheets are loa ded. 3041 // For non-HTML there is no body so resume as soon as the sheets are loa ded.
3042 beginLifecycleUpdatesIfRenderingReady(); 3042 beginLifecycleUpdatesIfRenderingReady();
3043 } 3043 }
3044 3044
(...skipping 2987 matching lines...) Expand 10 before | Expand all | Expand 10 after
6032 } 6032 }
6033 6033
6034 void showLiveDocumentInstances() 6034 void showLiveDocumentInstances()
6035 { 6035 {
6036 WeakDocumentSet& set = liveDocumentSet(); 6036 WeakDocumentSet& set = liveDocumentSet();
6037 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 6037 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
6038 for (Document* document : set) 6038 for (Document* document : set)
6039 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data()); 6039 fprintf(stderr, "- Document %p URL: %s\n", document, document->url().get String().utf8().data());
6040 } 6040 }
6041 #endif 6041 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/parser/HTMLScriptRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698