Index: src/runtime/runtime-debug.cc |
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc |
index f47d47b8f39862bd6b7b95fca10f7415944999b2..3491921286159f5c5a52bcd2d0f0d8b5c93b5480 100644 |
--- a/src/runtime/runtime-debug.cc |
+++ b/src/runtime/runtime-debug.cc |
@@ -1065,11 +1065,11 @@ RUNTIME_FUNCTION(Runtime_GetThreadDetails) { |
// Sets the disable break state |
// args[0]: disable break state |
-RUNTIME_FUNCTION(Runtime_SetDisableBreak) { |
+RUNTIME_FUNCTION(Runtime_SetBreakPointsActive) { |
HandleScope scope(isolate); |
DCHECK(args.length() == 1); |
- CONVERT_BOOLEAN_ARG_CHECKED(disable_break, 0); |
- isolate->debug()->set_disable_break(disable_break); |
+ CONVERT_BOOLEAN_ARG_CHECKED(active, 0); |
+ isolate->debug()->set_break_points_active(active); |
return isolate->heap()->undefined_value(); |
} |