| Index: Source/bindings/v8/ScriptController.cpp
|
| diff --git a/Source/bindings/v8/ScriptController.cpp b/Source/bindings/v8/ScriptController.cpp
|
| index 622d59ac6dfa84022762b5e8708aaa45397f7fa2..fb3635c55a0412f1a69c17376568d40dfb1b7791 100644
|
| --- a/Source/bindings/v8/ScriptController.cpp
|
| +++ b/Source/bindings/v8/ScriptController.cpp
|
| @@ -138,7 +138,7 @@ void ScriptController::clearForClose()
|
| {
|
| double start = currentTime();
|
| clearForClose(false);
|
| - WebKit::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearForClose", (currentTime() - start) * 1000, 0, 10000, 50);
|
| + blink::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearForClose", (currentTime() - start) * 1000, 0, 10000, 50);
|
| }
|
|
|
| void ScriptController::updateSecurityOrigin()
|
| @@ -491,7 +491,7 @@ void ScriptController::clearWindowShell()
|
| for (IsolatedWorldMap::iterator iter = m_isolatedWorlds.begin(); iter != m_isolatedWorlds.end(); ++iter)
|
| iter->value->clearForNavigation();
|
| V8GCController::hintForCollectGarbage();
|
| - WebKit::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearWindowShell", (currentTime() - start) * 1000, 0, 10000, 50);
|
| + blink::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearWindowShell", (currentTime() - start) * 1000, 0, 10000, 50);
|
| }
|
|
|
| void ScriptController::setCaptureCallStackForUncaughtExceptions(bool value)
|
|
|