| Index: Source/core/html/parser/HTMLScriptRunner.cpp
|
| diff --git a/Source/core/html/parser/HTMLScriptRunner.cpp b/Source/core/html/parser/HTMLScriptRunner.cpp
|
| index 17b459bc5696ec9fc818e14c9aa7057060766615..eebc6eadc1e9a38521aaf55f59bb3d227900acc1 100644
|
| --- a/Source/core/html/parser/HTMLScriptRunner.cpp
|
| +++ b/Source/core/html/parser/HTMLScriptRunner.cpp
|
| @@ -162,7 +162,7 @@ void HTMLScriptRunner::executePendingScriptAndDispatchEvent(PendingScript& pendi
|
| // The exact value doesn't matter; valid time stamps are much bigger than this value.
|
| const double epsilon = 1;
|
| if (pendingScriptType == PendingScript::ParsingBlocking && !m_parserBlockingScriptAlreadyLoaded && compilationFinishTime > epsilon && loadFinishTime > epsilon) {
|
| - blink::Platform::current()->histogramCustomCounts("WebCore.Scripts.ParsingBlocking.TimeBetweenLoadedAndCompiled", (compilationFinishTime - loadFinishTime) * 1000, 0, 10000, 50);
|
| + Platform::current()->histogramCustomCounts("WebCore.Scripts.ParsingBlocking.TimeBetweenLoadedAndCompiled", (compilationFinishTime - loadFinishTime) * 1000, 0, 10000, 50);
|
| }
|
|
|
| ASSERT(!isExecutingScript());
|
| @@ -371,4 +371,4 @@ DEFINE_TRACE(HTMLScriptRunner)
|
| visitor->trace(m_scriptsToExecuteAfterParsing);
|
| }
|
|
|
| -}
|
| +} // namespace blink
|
|
|