| Index: third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
|
| index 21089756df88436411d2d882426c5dd373540ed3..d64bcc92e7db9eeb9702c0ebee0bb31560369caa 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLDocumentParser.cpp
|
| @@ -1085,7 +1085,7 @@ void HTMLDocumentParser::appendCurrentInputStreamToPreloadScannerAndScan() {
|
| scanAndPreload(m_preloadScanner.get());
|
| }
|
|
|
| -void HTMLDocumentParser::notifyScriptLoaded(Resource* cachedResource) {
|
| +void HTMLDocumentParser::notifyScriptLoaded(PendingScript* pendingScript) {
|
| ASSERT(m_scriptRunner);
|
| ASSERT(!isExecutingScript());
|
|
|
| @@ -1098,7 +1098,7 @@ void HTMLDocumentParser::notifyScriptLoaded(Resource* cachedResource) {
|
| return;
|
| }
|
|
|
| - m_scriptRunner->executeScriptsWaitingForLoad(cachedResource);
|
| + m_scriptRunner->executeScriptsWaitingForLoad(pendingScript);
|
| if (!isWaitingForScripts())
|
| resumeParsingAfterScriptExecution();
|
| }
|
|
|