| Index: src/inspector/v8-debugger-agent-impl.cc
|
| diff --git a/src/inspector/v8-debugger-agent-impl.cc b/src/inspector/v8-debugger-agent-impl.cc
|
| index 9e276539f0021a987ecf9d1d942a74ca91ea4abf..7b03c96c0ad4f3d581dbb1d97b4dca24d4b9f34b 100644
|
| --- a/src/inspector/v8-debugger-agent-impl.cc
|
| +++ b/src/inspector/v8-debugger-agent-impl.cc
|
| @@ -483,11 +483,14 @@ Response V8DebuggerAgentImpl::getPossibleBreakpoints(
|
| }
|
|
|
| Response V8DebuggerAgentImpl::continueToLocation(
|
| - std::unique_ptr<protocol::Debugger::Location> location) {
|
| + std::unique_ptr<protocol::Debugger::Location> location,
|
| + Maybe<String16> targetCallFrames) {
|
| if (!enabled()) return Response::Error(kDebuggerNotEnabled);
|
| if (!isPaused()) return Response::Error(kDebuggerNotPaused);
|
| - return m_debugger->continueToLocation(m_session->contextGroupId(),
|
| - std::move(location));
|
| + return m_debugger->continueToLocation(
|
| + m_session->contextGroupId(), std::move(location),
|
| + targetCallFrames.fromMaybe(
|
| + protocol::Debugger::ContinueToLocation::TargetCallFramesEnum::Any));
|
| }
|
|
|
| bool V8DebuggerAgentImpl::isFunctionBlackboxed(const String16& scriptId,
|
|
|