Bug 1296079 - Remove dump() calls in dom/browser-element. r=kanru draft
authorJ. Ryan Stinnett <jryans@gmail.com>
Wed, 17 Aug 2016 15:40:25 -0500
changeset 401949 6eaeaf5c15149ba1ec0384a5d9f8db608f28d1a3
parent 400825 054d4856cea6150a6638e5daf7913713281af97d
child 404760 a99118bf95f375145f83c3d52c41af2b5f85db19
push id26594
push userbmo:jryans@gmail.com
push dateWed, 17 Aug 2016 20:40:55 +0000
reviewerskanru
bugs1296079
milestone51.0a1
Bug 1296079 - Remove dump() calls in dom/browser-element. r=kanru MozReview-Commit-ID: 1RbEiXMV5ab
dom/browser-element/BrowserElementChildPreload.js
dom/browser-element/BrowserElementCopyPaste.js
dom/browser-element/BrowserElementPanning.js
dom/ipc/extensions.js
--- a/dom/browser-element/BrowserElementChildPreload.js
+++ b/dom/browser-element/BrowserElementChildPreload.js
@@ -1,16 +1,14 @@
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 "use strict";
 
-dump("######################## BrowserElementChildPreload.js loaded\n");
-
 var BrowserElementIsReady = false;
 
 var { classes: Cc, interfaces: Ci, results: Cr, utils: Cu }  = Components;
 Cu.import("resource://gre/modules/XPCOMUtils.jsm");
 Cu.import("resource://gre/modules/Services.jsm");
 Cu.import("resource://gre/modules/BrowserElementPromptService.jsm");
 Cu.import("resource://gre/modules/Task.jsm");
 Cu.import("resource://gre/modules/ExtensionContent.jsm");
--- a/dom/browser-element/BrowserElementCopyPaste.js
+++ b/dom/browser-element/BrowserElementCopyPaste.js
@@ -1,18 +1,16 @@
 /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- /
 /* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 "use strict";
 
-dump("###################################### BrowserElementCopyPaste.js loaded\n");
-
 var { classes: Cc, interfaces: Ci, results: Cr, utils: Cu }  = Components;
 
 var CopyPasteAssistent = {
   COMMAND_MAP: {
     'cut': 'cmd_cut',
     'copy': 'cmd_copyAndCollapseToEnd',
     'paste': 'cmd_paste',
     'selectall': 'cmd_selectAll'
--- a/dom/browser-element/BrowserElementPanning.js
+++ b/dom/browser-element/BrowserElementPanning.js
@@ -1,17 +1,16 @@
 /* -*- tab-width: 2; indent-tabs-mode: nil; js-indent-level: 2 -*- */
 /* vim: set ts=2 sw=2 sts=2 et: */
 
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 "use strict";
-dump("############################### browserElementPanning.js loaded\n");
 
 var { classes: Cc, interfaces: Ci, results: Cr, utils: Cu }  = Components;
 Cu.import("resource://gre/modules/Services.jsm");
 Cu.import("resource://gre/modules/Geometry.jsm");
 
 const kObservedEvents = [
   "BEC:ShownModalPrompt",
   "Activity:Success",
--- a/dom/ipc/extensions.js
+++ b/dom/ipc/extensions.js
@@ -1,13 +1,11 @@
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 "use strict";
 
-dump("######################## extensions.js loaded\n");
-
 ExtensionContent.init(this);
 
 addEventListener("unload", () => {
   ExtensionContent.uninit(this);
 });