| Index: Source/core/inspector/V8DebuggerAgent.cpp
|
| diff --git a/Source/core/inspector/V8DebuggerAgent.cpp b/Source/core/inspector/V8DebuggerAgent.cpp
|
| index faa9eca3cd75d4d5b02fe758fc154513fb0d0a27..b52e4e1c5abb0a72f097baf186d9089a02837525 100644
|
| --- a/Source/core/inspector/V8DebuggerAgent.cpp
|
| +++ b/Source/core/inspector/V8DebuggerAgent.cpp
|
| @@ -1365,7 +1365,7 @@ void V8DebuggerAgent::removeAsyncCallTrackingListener(AsyncCallTrackingListener*
|
| m_asyncCallTrackingListeners.remove(listener);
|
| }
|
|
|
| -void V8DebuggerAgent::willCallFunction(int scriptId)
|
| +void V8DebuggerAgent::willExecuteScript(int scriptId)
|
| {
|
| changeJavaScriptRecursionLevel(+1);
|
| // Fast return.
|
| @@ -1377,18 +1377,7 @@ void V8DebuggerAgent::willCallFunction(int scriptId)
|
| schedulePauseOnNextStatementIfSteppingInto();
|
| }
|
|
|
| -void V8DebuggerAgent::didCallFunction()
|
| -{
|
| - changeJavaScriptRecursionLevel(-1);
|
| -}
|
| -
|
| -void V8DebuggerAgent::willEvaluateScript()
|
| -{
|
| - changeJavaScriptRecursionLevel(+1);
|
| - schedulePauseOnNextStatementIfSteppingInto();
|
| -}
|
| -
|
| -void V8DebuggerAgent::didEvaluateScript()
|
| +void V8DebuggerAgent::didExecuteScript()
|
| {
|
| changeJavaScriptRecursionLevel(-1);
|
| }
|
|
|