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

Unified Diff: src/execution.cc

Issue 2738503006: [inspector] don't make v8::debug::Call for breakProgram. (Closed)
Patch Set: fixed tests 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
Index: src/execution.cc
diff --git a/src/execution.cc b/src/execution.cc
index ee6afb2aca35274a0dfbcaededc14f8f8e3ea605..d23e86daf1619af540f399db5252292e66eeaa23 100644
--- a/src/execution.cc
+++ b/src/execution.cc
@@ -471,7 +471,7 @@ Object* StackGuard::HandleInterrupts() {
}
if (CheckDebugBreak()) {
- isolate_->debug()->HandleDebugBreak();
+ isolate_->debug()->HandleDebugBreak(kTopFrameBlackboxed);
}
if (CheckAndClearInterrupt(TERMINATE_EXECUTION)) {

Powered by Google App Engine
This is Rietveld 408576698