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

Unified Diff: src/debug/debug-interface.h

Issue 2465553003: [inspector] added Debugger.getPossibleBreakpoints method (Closed)
Patch Set: addressed comments Created 4 years, 1 month 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
Index: src/debug/debug-interface.h
diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h
index 77bab3a50c6336a780394fd068c9febfcad6af83..69b2a2460940359009f37906c235969290030a39 100644
--- a/src/debug/debug-interface.h
+++ b/src/debug/debug-interface.h
@@ -158,6 +158,12 @@ class DebugInterface {
MaybeLocal<String> SourceMappingURL() const;
MaybeLocal<String> ContextData() const;
MaybeLocal<String> Source() const;
+ /**
+ * lines and columns are 0-based.
+ */
+ bool GetPossibleBreakpoints(int start_line, int start_column, int end_line,
+ int end_column,
+ std::vector<int>& positions) const;
/**
* script parameter is a wrapper v8::internal::JSObject for
@@ -169,6 +175,9 @@ class DebugInterface {
*/
static MaybeLocal<Script> Wrap(Isolate* isolate,
v8::Local<v8::Object> script);
+
+ private:
+ int GetSourcePosition(int line, int column) const;
};
/**

Powered by Google App Engine
This is Rietveld 408576698