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

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

Issue 2728563002: [inspector] added type of break location into getPossibleBreakpoints output (Closed)
Patch Set: a Created 3 years, 10 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
Index: src/debug/debug-interface.h
diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h
index 0c8a1ab5443c94f9d396d287c1f0ee0271f5fcde..c43a9701f00774639670c7bf71d72c6b647d2a5c 100644
--- a/src/debug/debug-interface.h
+++ b/src/debug/debug-interface.h
@@ -135,10 +135,10 @@ class V8_EXPORT_PRIVATE Script {
MaybeLocal<String> Source() const;
bool IsWasm() const;
bool IsModule() const;
- bool GetPossibleBreakpoints(const debug::Location& start,
- const debug::Location& end,
- bool restrict_to_function,
- std::vector<debug::Location>* locations) const;
+ bool GetPossibleBreakpoints(
+ const debug::Location& start, const debug::Location& end,
+ bool restrict_to_function,
+ std::vector<debug::BreakLocation>* locations) const;
int GetSourceOffset(const debug::Location& location) const;
v8::debug::Location GetSourceLocation(int offset) const;
};
« no previous file with comments | « src/debug/debug.cc ('k') | src/debug/interface-types.h » ('j') | src/debug/interface-types.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698