From 5f29d5c4a970220c95b5924b77a6b28cd8c0a5c6 Mon Sep 17 00:00:00 2001 From: Victor Porof Date: Mon, 1 Oct 2012 15:15:10 +0300 Subject: [PATCH] Bug 795009 - REMOTE_PROFILE_NAME should actually be chrome, r=past --- browser/devtools/debugger/DebuggerUI.jsm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/browser/devtools/debugger/DebuggerUI.jsm b/browser/devtools/debugger/DebuggerUI.jsm index 517306f195d..81aee10e50f 100644 --- a/browser/devtools/debugger/DebuggerUI.jsm +++ b/browser/devtools/debugger/DebuggerUI.jsm @@ -11,7 +11,7 @@ const Cu = Components.utils; const DBG_XUL = "chrome://browser/content/debugger.xul"; const DBG_STRINGS_URI = "chrome://browser/locale/devtools/debugger.properties"; -const REMOTE_PROFILE_NAME = "_remote-debug"; +const CHROME_DEBUGGER_PROFILE_NAME = "_chrome-debugger-profile"; const TAB_SWITCH_NOTIFICATION = "debugger-tab-switch"; Cu.import("resource://gre/modules/devtools/dbg-server.jsm"); @@ -489,9 +489,9 @@ ChromeDebuggerProcess.prototype = { let dbgProfileName; try { - dbgProfileName = profileService.selectedProfile.name + REMOTE_PROFILE_NAME; + dbgProfileName = profileService.selectedProfile.name + CHROME_DEBUGGER_PROFILE_NAME; } catch(e) { - dbgProfileName = REMOTE_PROFILE_NAME; + dbgProfileName = CHROME_DEBUGGER_PROFILE_NAME; Cu.reportError(e); }