author | Nicolas Chevobbe <nchevobbe@mozilla.com> |
Thu, 29 Mar 2018 18:32:29 +0200 | |
changeset 411654 | 6b052fb6d3289aec5ee9805eb068687b9a2cc7e8 |
parent 411653 | 1f158432b80165534e86a82cc1d9b74f6b543bb8 |
child 411655 | 96f5011b881fe0d9bd0529a43f9812238c6efd9f |
push id | 33764 |
push user | csabou@mozilla.com |
push date | Wed, 04 Apr 2018 17:53:18 +0000 |
treeherder | mozilla-central@90eb45ff0a64 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | sole |
bugs | 1449993 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/devtools/client/memory/components/tree-map/canvas-utils.js +++ b/devtools/client/memory/components/tree-map/canvas-utils.js @@ -11,17 +11,17 @@ * canvas. The main canvas dimensions match the parent div, but the CSS can be * transformed to be zoomed and dragged around (potentially creating a blurry * canvas once zoomed in). The zoom canvas is a zoomed in section that matches * the parent div's dimensions and is kept in place through CSS. A zoomed in * view of the visualization is drawn onto this canvas, providing a crisp zoomed * in view of the tree map. */ const { debounce } = require("devtools/shared/debounce"); -const EventEmitter = require("devtools/shared/old-event-emitter"); +const EventEmitter = require("devtools/shared/event-emitter"); const HTML_NS = "http://www.w3.org/1999/xhtml"; const FULLSCREEN_STYLE = { width: "100%", height: "100%", position: "absolute", };
--- a/devtools/client/memory/components/tree-map/drag-zoom.js +++ b/devtools/client/memory/components/tree-map/drag-zoom.js @@ -1,17 +1,17 @@ /* 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"; const { debounce } = require("devtools/shared/debounce"); const { lerp } = require("devtools/client/memory/utils"); -const EventEmitter = require("devtools/shared/old-event-emitter"); +const EventEmitter = require("devtools/shared/event-emitter"); const LERP_SPEED = 0.5; const ZOOM_SPEED = 0.01; const TRANSLATE_EPSILON = 1; const ZOOM_EPSILON = 0.001; const LINE_SCROLL_MODE = 1; const SCROLL_LINE_SIZE = 15;
--- a/devtools/client/memory/panel.js +++ b/devtools/client/memory/panel.js @@ -1,15 +1,15 @@ /* 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"; -const EventEmitter = require("devtools/shared/old-event-emitter"); +const EventEmitter = require("devtools/shared/event-emitter"); const { MemoryFront } = require("devtools/shared/fronts/memory"); const HeapAnalysesClient = require("devtools/shared/heapsnapshot/HeapAnalysesClient"); function MemoryPanel(iframeWindow, toolbox) { this.panelWin = iframeWindow; this._toolbox = toolbox; EventEmitter.decorate(this);