コード例 #1
0
ファイル: ScriptController.cpp プロジェクト: kcomkar/webkit
void ScriptController::clearForClose()
{
    double start = currentTime();
    clearForClose(false);
    HistogramSupport::histogramCustomCounts("WebCore.ScriptController.clearForClose", (currentTime() - start) * 1000, 0, 10000, 50);
}
コード例 #2
0
void ScriptController::clearForOutOfMemory()
{
    clearForClose(true);
}
コード例 #3
0
ファイル: ScriptController.cpp プロジェクト: kcomkar/webkit
ScriptController::~ScriptController()
{
    clearForClose(true);
}
コード例 #4
0
ファイル: V8Proxy.cpp プロジェクト: besk/MT6589_kernel_source
V8Proxy::~V8Proxy()
{
    clearForClose();
    windowShell()->destroyGlobal();
}
コード例 #5
0
ファイル: ScriptController.cpp プロジェクト: kublaj/blink
void ScriptController::clearForClose()
{
    double start = currentTime();
    clearForClose(false);
    blink::Platform::current()->histogramCustomCounts("WebCore.ScriptController.clearForClose", (currentTime() - start) * 1000, 0, 10000, 50);
}
コード例 #6
0
ファイル: V8Proxy.cpp プロジェクト: jackiekaon/owb-mirror
V8Proxy::~V8Proxy()
{
    clearForClose();
    destroyGlobal();
}
コード例 #7
0
ScriptController::~ScriptController()
{
    windowShell()->destroyGlobal();
    clearForClose();
}