Index: src/inspector/v8-debugger.h |
diff --git a/src/inspector/v8-debugger.h b/src/inspector/v8-debugger.h |
index bca73e20a852669e593606bbcc5090a613e01828..e85e61f9556b9bcae3d54c703c3ae32a84160cbf 100644 |
--- a/src/inspector/v8-debugger.h |
+++ b/src/inspector/v8-debugger.h |
@@ -61,6 +61,9 @@ class V8Debugger : public v8::debug::DebugDelegate { |
std::unique_ptr<ScheduleStepIntoAsyncCallback> callback, |
int targetContextGroupId); |
+ Response continueToLocation(int targetContextGroupId, |
+ std::unique_ptr<protocol::Debugger::Location>); |
+ |
Response setScriptSource( |
const String16& sourceID, v8::Local<v8::String> newSource, bool dryRun, |
protocol::Maybe<protocol::Runtime::ExceptionDetails>*, |
@@ -119,6 +122,7 @@ class V8Debugger : public v8::debug::DebugDelegate { |
bool catchExceptions); |
v8::Local<v8::Context> debuggerContext() const; |
void clearBreakpoints(); |
+ void clearContinueToLocation(); |
static void v8OOMCallback(void* data); |
@@ -184,6 +188,7 @@ class V8Debugger : public v8::debug::DebugDelegate { |
bool m_scheduledOOMBreak = false; |
int m_targetContextGroupId = 0; |
int m_pausedContextGroupId = 0; |
+ String16 m_continueToLocationBreakpointId; |
using AsyncTaskToStackTrace = |
protocol::HashMap<void*, std::weak_ptr<AsyncStackTrace>>; |