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

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

Issue 2728563002: [inspector] added type of break location into getPossibleBreakpoints output (Closed)
Patch Set: added DCHECK Created 3 years, 9 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 | « src/debug/debug.cc ('k') | src/debug/interface-types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug-interface.h
diff --git a/src/debug/debug-interface.h b/src/debug/debug-interface.h
index 4885272b4143d920caa45d1aceb92adcffff3bec..387cce0662ada766f40f4099612ab11cdb9cbf23 100644
--- a/src/debug/debug-interface.h
+++ b/src/debug/debug-interface.h
@@ -136,10 +136,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698