From 5cf473038f38e473d8b7dbcdac2ca73a7e372a38 Mon Sep 17 00:00:00 2001 From: Ryan VanderMeulen Date: Thu, 28 Aug 2014 15:18:37 -0400 Subject: [PATCH] Backed out changeset 4062a2a685a2 (bug 1057031) for mochitest-dt failures. --- browser/devtools/debugger/debugger-controller.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/browser/devtools/debugger/debugger-controller.js b/browser/devtools/debugger/debugger-controller.js index fb79eb0843bb..d45d9a5d0783 100644 --- a/browser/devtools/debugger/debugger-controller.js +++ b/browser/devtools/debugger/debugger-controller.js @@ -10,7 +10,6 @@ const { classes: Cc, interfaces: Ci, utils: Cu } = Components; const DBG_STRINGS_URI = "chrome://browser/locale/devtools/debugger.properties"; const NEW_SOURCE_IGNORED_URLS = ["debugger eval code", "self-hosted", "XStringBundle"]; const NEW_SOURCE_DISPLAY_DELAY = 200; // ms -const EDITOR_BREAKPOINTS_UPDATE_DELAY = 200; // ms const FETCH_SOURCE_RESPONSE_DELAY = 200; // ms const FETCH_EVENT_LISTENERS_DELAY = 200; // ms const FRAME_STEP_CLEAR_DELAY = 100; // ms @@ -1171,9 +1170,7 @@ SourceScripts.prototype = { // If there are any stored breakpoints for this source, display them again, // both in the editor and the breakpoints pane. DebuggerController.Breakpoints.updatePaneBreakpoints(); - setNamedTimeout("update-editor-bp", EDITOR_BREAKPOINTS_UPDATE_DELAY, () => { - DebuggerController.Breakpoints.updateEditorBreakpoints(); - }); + DebuggerController.Breakpoints.updateEditorBreakpoints(); DebuggerController.HitCounts.updateEditorHitCounts(); // Make sure the events listeners are up to date.