зеркало из https://github.com/mozilla/gecko-dev.git
Backed out changeset 9162b1c01237 (bug 1452061) for failing at performance/components/test/test_jit_optimizations_01.html on a CLOSED TREE
--HG-- rename : devtools/client/performance/components/JITOptimizationsItem.js => devtools/client/performance/components/jit-optimizations-item.js rename : devtools/client/performance/components/JITOptimizations.js => devtools/client/performance/components/jit-optimizations.js rename : devtools/client/performance/components/RecordingButton.js => devtools/client/performance/components/recording-button.js rename : devtools/client/performance/components/RecordingControls.js => devtools/client/performance/components/recording-controls.js rename : devtools/client/performance/components/RecordingListItem.js => devtools/client/performance/components/recording-list-item.js rename : devtools/client/performance/components/RecordingList.js => devtools/client/performance/components/recording-list.js rename : devtools/client/performance/components/WaterfallHeader.js => devtools/client/performance/components/waterfall-header.js rename : devtools/client/performance/components/WaterfallTreeRow.js => devtools/client/performance/components/waterfall-tree-row.js rename : devtools/client/performance/components/WaterfallTree.js => devtools/client/performance/components/waterfall-tree.js rename : devtools/client/performance/components/Waterfall.js => devtools/client/performance/components/waterfall.js
This commit is contained in:
Родитель
4443a88796
Коммит
b7807c2f1e
|
@ -12,7 +12,7 @@ const { Component, createFactory } = require("devtools/client/shared/vendor/reac
|
|||
const dom = require("devtools/client/shared/vendor/react-dom-factories");
|
||||
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
|
||||
const Tree = createFactory(require("devtools/client/shared/components/VirtualizedTree"));
|
||||
const OptimizationsItem = createFactory(require("./JITOptimizationsItem"));
|
||||
const OptimizationsItem = createFactory(require("./jit-optimizations-item"));
|
||||
const FrameView = createFactory(require("../../shared/components/Frame"));
|
||||
const JIT_TITLE = L10N.getStr("jit.title");
|
||||
// If TREE_ROW_HEIGHT changes, be sure to change `var(--jit-tree-row-height)`
|
|
@ -4,16 +4,16 @@
|
|||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
DevToolsModules(
|
||||
'JITOptimizations.js',
|
||||
'JITOptimizationsItem.js',
|
||||
'RecordingButton.js',
|
||||
'RecordingControls.js',
|
||||
'RecordingList.js',
|
||||
'RecordingListItem.js',
|
||||
'Waterfall.js',
|
||||
'WaterfallHeader.js',
|
||||
'WaterfallTree.js',
|
||||
'WaterfallTreeRow.js',
|
||||
'jit-optimizations-item.js',
|
||||
'jit-optimizations.js',
|
||||
'recording-button.js',
|
||||
'recording-controls.js',
|
||||
'recording-list-item.js',
|
||||
'recording-list.js',
|
||||
'waterfall-header.js',
|
||||
'waterfall-tree-row.js',
|
||||
'waterfall-tree.js',
|
||||
'waterfall.js',
|
||||
)
|
||||
|
||||
MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini']
|
||||
|
|
|
@ -17,7 +17,7 @@ window.onload = async function () {
|
|||
try {
|
||||
let ReactDOM = browserRequire("devtools/client/shared/vendor/react-dom");
|
||||
let React = browserRequire("devtools/client/shared/vendor/react");
|
||||
let JITOptimizations = React.createFactory(browserRequire("devtools/client/performance/components/JitOptimizations"));
|
||||
let JITOptimizations = React.createFactory(browserRequire("devtools/client/performance/components/jit-optimizations"));
|
||||
ok(JITOptimizations, "Should get JITOptimizations");
|
||||
let opts;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
const { Component, createFactory } = require("devtools/client/shared/vendor/react");
|
||||
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
|
||||
const Tree = createFactory(require("devtools/client/shared/components/VirtualizedTree"));
|
||||
const WaterfallTreeRow = createFactory(require("./WaterfallTreeRow"));
|
||||
const WaterfallTreeRow = createFactory(require("./waterfall-tree-row"));
|
||||
|
||||
// Keep in sync with var(--waterfall-tree-row-height) in performance.css
|
||||
const WATERFALL_TREE_ROW_HEIGHT = 15; // px
|
|
@ -11,8 +11,8 @@
|
|||
const { createFactory } = require("devtools/client/shared/vendor/react");
|
||||
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
|
||||
const dom = require("devtools/client/shared/vendor/react-dom-factories");
|
||||
const WaterfallHeader = createFactory(require("./WaterfallHeader"));
|
||||
const WaterfallTree = createFactory(require("./WaterfallTree"));
|
||||
const WaterfallHeader = createFactory(require("./waterfall-header"));
|
||||
const WaterfallTree = createFactory(require("./waterfall-tree"));
|
||||
|
||||
function Waterfall(props) {
|
||||
return dom.div(
|
|
@ -34,12 +34,12 @@ Object.defineProperty(this, "EVENTS", {
|
|||
DevToolsUtils, system */
|
||||
var React = require("devtools/client/shared/vendor/react");
|
||||
var ReactDOM = require("devtools/client/shared/vendor/react-dom");
|
||||
var Waterfall = React.createFactory(require("devtools/client/performance/components/Waterfall"));
|
||||
var JITOptimizationsView = React.createFactory(require("devtools/client/performance/components/JITOptimizations"));
|
||||
var RecordingControls = React.createFactory(require("devtools/client/performance/components/RecordingControls"));
|
||||
var RecordingButton = React.createFactory(require("devtools/client/performance/components/RecordingButton"));
|
||||
var RecordingList = React.createFactory(require("devtools/client/performance/components/RecordingList"));
|
||||
var RecordingListItem = React.createFactory(require("devtools/client/performance/components/RecordingListItem"));
|
||||
var Waterfall = React.createFactory(require("devtools/client/performance/components/waterfall"));
|
||||
var JITOptimizationsView = React.createFactory(require("devtools/client/performance/components/jit-optimizations"));
|
||||
var RecordingControls = React.createFactory(require("devtools/client/performance/components/recording-controls"));
|
||||
var RecordingButton = React.createFactory(require("devtools/client/performance/components/recording-button"));
|
||||
var RecordingList = React.createFactory(require("devtools/client/performance/components/recording-list"));
|
||||
var RecordingListItem = React.createFactory(require("devtools/client/performance/components/recording-list-item"));
|
||||
|
||||
var Services = require("Services");
|
||||
var promise = require("promise");
|
||||
|
|
Загрузка…
Ссылка в новой задаче