| Index: third_party/WebKit/Source/core/dom/ScriptLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ScriptLoader.cpp b/third_party/WebKit/Source/core/dom/ScriptLoader.cpp
|
| index a8337a8df390e92e0f5c4ad23955a52e56086473..6467bc1b4c315f393d368cd8a8c2ae9dda2af1c8 100644
|
| --- a/third_party/WebKit/Source/core/dom/ScriptLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ScriptLoader.cpp
|
| @@ -355,7 +355,7 @@ void ScriptLoader::logScriptMimetype(ScriptResource* resource, LocalFrame* frame
|
| UseCounter::count(frame, feature);
|
| }
|
|
|
| -bool ScriptLoader::executeScript(const ScriptSourceCode& sourceCode, double* compilationFinishTime)
|
| +bool ScriptLoader::executeScript(const ScriptSourceCode& sourceCode)
|
| {
|
| DCHECK(m_alreadyStarted);
|
|
|
| @@ -427,7 +427,7 @@ bool ScriptLoader::executeScript(const ScriptSourceCode& sourceCode, double* com
|
| // Create a script from the script element node, using the script
|
| // block's source and the script block's type.
|
| // Note: This is where the script is compiled and actually executed.
|
| - frame->script().executeScriptInMainWorld(sourceCode, accessControlStatus, compilationFinishTime);
|
| + frame->script().executeScriptInMainWorld(sourceCode, accessControlStatus);
|
|
|
| if (isHTMLScriptLoader(m_element) || isSVGScriptLoader(m_element)) {
|
| DCHECK(contextDocument->currentScript() == m_element);
|
|
|