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

Unified Diff: trunk/Source/core/html/parser/HTMLScriptRunner.cpp

Issue 283333002: Revert 174019 "Make ScriptLoader into a ResourceOwner" (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: trunk/Source/core/html/parser/HTMLScriptRunner.cpp
===================================================================
--- trunk/Source/core/html/parser/HTMLScriptRunner.cpp (revision 174070)
+++ trunk/Source/core/html/parser/HTMLScriptRunner.cpp (working copy)
@@ -244,9 +244,9 @@
return true;
}
-void HTMLScriptRunner::requestParsingBlockingScript(const ResourcePtr<ScriptResource>& resource, Element* element)
+void HTMLScriptRunner::requestParsingBlockingScript(Element* element)
{
- if (!requestPendingScript(resource, m_parserBlockingScript, element))
+ if (!requestPendingScript(m_parserBlockingScript, element))
return;
ASSERT(m_parserBlockingScript.resource());
@@ -258,26 +258,27 @@
watchForLoad(m_parserBlockingScript);
}
-void HTMLScriptRunner::requestDeferredScript(const ResourcePtr<ScriptResource>& resource, Element* element)
+void HTMLScriptRunner::requestDeferredScript(Element* element)
{
PendingScript pendingScript;
- if (!requestPendingScript(resource, pendingScript, element))
+ if (!requestPendingScript(pendingScript, element))
return;
ASSERT(pendingScript.resource());
m_scriptsToExecuteAfterParsing.append(pendingScript);
}
-bool HTMLScriptRunner::requestPendingScript(const ResourcePtr<ScriptResource>& resource, PendingScript& pendingScript, Element* script) const
+bool HTMLScriptRunner::requestPendingScript(PendingScript& pendingScript, Element* script) const
{
ASSERT(!pendingScript.element());
pendingScript.setElement(script);
// This should correctly return 0 for empty or invalid srcValues.
+ ScriptResource* resource = toScriptLoaderIfPossible(script)->resource().get();
if (!resource) {
notImplemented(); // Dispatch error event.
return false;
}
- pendingScript.setScriptResource(resource.get());
+ pendingScript.setScriptResource(resource);
return true;
}
@@ -306,13 +307,13 @@
InsertionPointRecord insertionPointRecord(m_host->inputStream());
NestingLevelIncrementer nestingLevelIncrementer(m_scriptNestingLevel);
- ScriptPrep prep = scriptLoader->prepareScript(scriptStartPosition);
+ scriptLoader->prepareScript(scriptStartPosition);
if (!scriptLoader->willBeParserExecuted())
return;
if (scriptLoader->willExecuteWhenDocumentFinishedParsing()) {
- requestDeferredScript(prep.resource(), script);
+ requestDeferredScript(script);
} else if (scriptLoader->readyToBeParserExecuted()) {
if (m_scriptNestingLevel == 1) {
m_parserBlockingScript.setElement(script);
@@ -322,7 +323,7 @@
scriptLoader->executeScript(sourceCode);
}
} else {
- requestParsingBlockingScript(prep.resource(), script);
+ requestParsingBlockingScript(script);
}
}
}
« no previous file with comments | « trunk/Source/core/html/parser/HTMLScriptRunner.h ('k') | trunk/Source/core/xml/parser/XMLDocumentParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698