Index: Source/devtools/front_end/DebuggerModel.js |
diff --git a/Source/devtools/front_end/DebuggerModel.js b/Source/devtools/front_end/DebuggerModel.js |
index 9808d1b9b54180bb5bd1f8bf5ea020019b9ddcfc..e55d7d476419731dce03d99c8a57c5a9d841ba33 100644 |
--- a/Source/devtools/front_end/DebuggerModel.js |
+++ b/Source/devtools/front_end/DebuggerModel.js |
@@ -585,7 +585,7 @@ WebInspector.DebuggerModel.prototype = { |
DebuggerAgent.stepInto(); |
else { |
if (newCallFrames && newCallFrames.length) |
- this._pausedScript(newCallFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData); |
+ this._pausedScript(newCallFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds); |
} |
}, |
@@ -613,12 +613,12 @@ WebInspector.DebuggerDispatcher.prototype = { |
/** |
* @param {Array.<DebuggerAgent.CallFrame>} callFrames |
* @param {string} reason |
- * @param {Object=} auxData |
- * @param {Array.<string>} breakointsIds |
+ * @param {Object=} opt_auxData |
apavlov
2013/06/06 11:03:49
We don't use the "opt_" prefix, other than in the
SeRya
2013/06/06 11:25:54
Done.
|
+ * @param {Array.<string>=} opt_breakpointIds |
*/ |
- paused: function(callFrames, reason, auxData, breakointsIds) |
+ paused: function(callFrames, reason, opt_auxData, opt_breakpointIds) |
{ |
- this._debuggerModel._pausedScript(callFrames, reason, auxData, breakointsIds); |
+ this._debuggerModel._pausedScript(callFrames, reason, opt_auxData, opt_breakpointIds || []); |
}, |
resumed: function() |