Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: src/inspector/v8-debugger.h

Issue 2882213004: [inspector] move continueToLocation implementation to debugger (Closed)
Patch Set: ac Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/inspector/v8-debugger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>>;
« no previous file with comments | « no previous file | src/inspector/v8-debugger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698