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

Unified Diff: Source/devtools/front_end/DebuggerModel.js

Issue 16540002: Fixed compile_frontend.py warnings. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | « no previous file | Source/devtools/front_end/IsolatedFileSystem.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..9b2f16b1d49f223ce47bac151632816809ee6ba6 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);
}
},
@@ -614,11 +614,11 @@ WebInspector.DebuggerDispatcher.prototype = {
* @param {Array.<DebuggerAgent.CallFrame>} callFrames
* @param {string} reason
* @param {Object=} auxData
- * @param {Array.<string>} breakointsIds
+ * @param {Array.<string>=} breakpointIds
*/
- paused: function(callFrames, reason, auxData, breakointsIds)
+ paused: function(callFrames, reason, auxData, breakpointIds)
{
- this._debuggerModel._pausedScript(callFrames, reason, auxData, breakointsIds);
+ this._debuggerModel._pausedScript(callFrames, reason, auxData, breakpointIds || []);
},
resumed: function()
« no previous file with comments | « no previous file | Source/devtools/front_end/IsolatedFileSystem.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698