summaryrefslogtreecommitdiffstats
path: root/toolkit/components/aboutmemory/content/aboutMemory.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/aboutmemory/content/aboutMemory.js')
-rw-r--r--toolkit/components/aboutmemory/content/aboutMemory.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/toolkit/components/aboutmemory/content/aboutMemory.js b/toolkit/components/aboutmemory/content/aboutMemory.js
index c62416dc5..dcc1ce3ac 100644
--- a/toolkit/components/aboutmemory/content/aboutMemory.js
+++ b/toolkit/components/aboutmemory/content/aboutMemory.js
@@ -367,22 +367,6 @@ function onLoad()
appendButton(row4, GCAndCCAllLogDesc,
saveGCLogAndVerboseCCLog, "Save verbose", 'saveLogsVerbose');
- // Three cases here:
- // - DMD is disabled (i.e. not built): don't show the button.
- // - DMD is enabled but is not running: show the button, but disable it.
- // - DMD is enabled and is running: show the button and enable it.
- if (gMgr.isDMDEnabled) {
- let row5 = appendElement(ops, "div", "opsRow");
-
- appendElementWithText(row5, "div", "opsRowLabel", "Save DMD output");
- let enableButtons = gMgr.isDMDRunning;
-
- let dmdButton =
- appendButton(row5, enableButtons ? DMDEnabledDesc : DMDDisabledDesc,
- doDMD, "Save");
- dmdButton.disabled = !enableButtons;
- }
-
// Generate the main div, where content ("section" divs) will go. It's
// hidden at first.