Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp |
index 584c0164e0339ae5b3d39bc8d4e9001d6f6e7a8f..c97eaeb175c58e140c3ee016fb66e471cb91f2e9 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.cpp |
@@ -376,9 +376,7 @@ void V8DebuggerAgentImpl::removeBreakpoint(const String16& breakpointId) |
m_breakpointIdToDebuggerBreakpointIds.erase(breakpointId); |
} |
-void V8DebuggerAgentImpl::continueToLocation(ErrorString* errorString, |
- std::unique_ptr<protocol::Debugger::Location> location, |
- const protocol::Maybe<bool>& interstateLocationOpt) |
+void V8DebuggerAgentImpl::continueToLocation(ErrorString* errorString, std::unique_ptr<protocol::Debugger::Location> location) |
{ |
if (!checkEnabled(errorString)) |
return; |
@@ -395,7 +393,7 @@ void V8DebuggerAgentImpl::continueToLocation(ErrorString* errorString, |
return; |
ScriptBreakpoint breakpoint(lineNumber, columnNumber, ""); |
- m_continueToLocationBreakpointId = m_debugger->setBreakpoint(scriptId, breakpoint, &lineNumber, &columnNumber, interstateLocationOpt.fromMaybe(false)); |
+ m_continueToLocationBreakpointId = m_debugger->setBreakpoint(scriptId, breakpoint, &lineNumber, &columnNumber); |
resume(errorString); |
} |
@@ -502,7 +500,7 @@ std::unique_ptr<protocol::Debugger::Location> V8DebuggerAgentImpl::resolveBreakp |
int actualLineNumber; |
int actualColumnNumber; |
- String16 debuggerBreakpointId = m_debugger->setBreakpoint(scriptId, breakpoint, &actualLineNumber, &actualColumnNumber, false); |
+ String16 debuggerBreakpointId = m_debugger->setBreakpoint(scriptId, breakpoint, &actualLineNumber, &actualColumnNumber); |
if (debuggerBreakpointId.isEmpty()) |
return nullptr; |