Commit Graph

27 Commits

Author SHA1 Message Date
Nicolas Chevobbe
f3f3ce693d Bug 1260283 - Implement new console output frontend behind a pref. r=linclark
MozReview-Commit-ID: 77qsML4CXlh

--HG--
rename : devtools/client/webconsole/new-console-output/output-wrapper-thingy.js => devtools/client/webconsole/new-console-output/new-console-output-wrapper.js
2016-04-29 13:18:00 -07:00
Jan Odvarko
22e4925d1f Bug 1267293 - Turn the DOM panel off by default;r=bgrins
MozReview-Commit-ID: DOYF2vTUEqq
2016-04-25 18:04:47 +02:00
Nick Fitzgerald
cd2c23a435 Bug 1249788 - Implement the census individuals view; r=jsantell
This adds the INDIVIDUALS view state to the memory panel, renames "dominator
tree display" to "label display", and adds a view for listing the individual
nodes in a census group and inspecting each nodes' retaining paths.

--HG--
rename : devtools/client/memory/actions/dominator-tree-display.js => devtools/client/memory/actions/label-display.js
rename : devtools/client/memory/reducers/dominator-tree-display.js => devtools/client/memory/reducers/label-display.js
2016-04-11 18:04:31 -07:00
Alexandre Poirot
d85fa6d2c0 Bug 1258985 - Remove menuitem and pref related to the "Error Console". r=jryans 2016-04-05 07:16:48 -07:00
Greg Tatum
bffbcbb869 Bug 1238695 - Render census data as a treemap. r=fitzgen, r=vporof 2016-04-01 10:56:00 -04:00
J. Ryan Stinnett
e1bf9e0d01 Bug 1245121 - Enable JSON Viewer on !RELEASE_BUILD. r=Honza
MozReview-Commit-ID: ItfrT4SPE6e
2016-03-04 17:03:39 -06:00
Alexandre Poirot
ffdbd09825 Bug 1245875 - Remove Tilt from tree. r=vporof,jwalker 2016-03-03 02:27:22 -08:00
Nick Fitzgerald
a9e7879204 Bug 1249779 - Remove the "invert tree" checkbox and make inverting a property of the "group by" selection; r=jsantell
Effectively, this moves `inverted` from a global and per-census state, to a
per-`breakdownModel` state. Additionally, a `breakdownModel` is not just a
breakdown spec anymore, but also some extra associated metadata. As such, it has
been split in two and renamed to "censusDisplayModel" and
"dominatorTreeDisplayModel".

--HG--
rename : devtools/client/memory/reducers/breakdown.js => devtools/client/memory/reducers/census-display.js
rename : devtools/client/memory/reducers/dominatorTreeBreakdown.js => devtools/client/memory/reducers/dominator-tree-display.js
rename : devtools/client/memory/test/browser/browser_memory_allocationStackBreakdown_01.js => devtools/client/memory/test/browser/browser_memory_allocationStackDisplay_01.js
rename : devtools/client/memory/test/browser/browser_memory_breakdowns_01.js => devtools/client/memory/test/browser/browser_memory_displays_01.js
rename : devtools/client/memory/test/unit/test_action-set-breakdown-and-refresh-02.js => devtools/client/memory/test/unit/test_action-set-display-and-refresh-02.js
2016-03-01 16:20:45 -08:00
malayaleecoder
25c188a973 Bug 1247723 - Disable the Font Panel; r=pbro
MozReview-Commit-ID: 1x6Fi0SvPpr
2016-02-20 01:38:57 +05:30
J. Ryan Stinnett
0e31ff0cab Backout f5bd25c789b6 "Bug 1245121 - Enable JSON Viewer on RELEASE_BUILD" for Talos regressions. 2016-02-16 09:15:06 -06:00
Jordan Santell
4ce69a101e Bug 1175756 - Change JIT optimizations to be a view pref, rather than a recording pref. r=vp 2016-02-05 08:04:12 -08:00
Carsten "Tomcat" Book
641304978c Merge mozilla-central to fx-team 2016-02-04 12:08:00 +01:00
Carsten "Tomcat" Book
55b4ed8c4c merge mozilla-inbound to mozilla-central a=merge 2016-02-04 12:02:05 +01:00
Alexandre Poirot
dd4512a3dd Bug 1214352 - Enable scratchpad in tab toolboxes. r=jryans 2016-02-04 02:20:55 -08:00
J. Ryan Stinnett
3e1c3516ad Bug 1245121 - Enable JSON Viewer on RELEASE_BUILD. r=Honza 2016-02-03 09:55:17 -06:00
Alexandre Poirot
c5ec2a3f0f Bug 950936 - Add disable autohide button in browser toolbox to help debug panel/popups. r=bgrins 2016-01-28 10:11:31 -08:00
James Long
4bec8149a9 Bug 1239018 - add file watching and hot reloading for devtools files r=jryans 2016-01-26 11:29:32 -05:00
J. Ryan Stinnett
310c7f9a77 Bug 1239437 - Delegate to empty, new responsive UI tool if enabled. r=pbrosset 2016-01-25 19:44:08 -06:00
Hugo Arregui
18da53aab7 Bug 1225063 - add option (devtools.markup.collapseAttributes) to enable/disable attribute collapsing from settings panel;r=bgrins
--HG--
extra : commitid : 7AKsC2gbakg
2016-01-25 16:02:31 -08:00
Morgan Phillips
cc1d5c451d Bug 1243851 - Treat enter as shift+enter if input is valid but incomplete; r=fitzgen, bgrins
--HG--
extra : rebase_source : fbf7f0f9dfe9f6f1f65691a2d66edfd5d30c3706
2016-02-03 10:46:27 -06:00
Nick Fitzgerald
46ec4d3cc4 Bug 1229229 - Display dominator trees in the memory tool's UI; r=jsantell
This patch overhauls the memory tool's frontend from being in a state of viewing
a snapshot's census (the implicit default) or viewing a census diff (a special
cased kind of thing) to one of three recognized view states: (1) census, (2)
diffing, or (3) dominator tree. The logic surrounding our current view is more
explicit now. View option (3) is the new one, whose introduction required those
clean ups.

Dominator trees are too large to render in full, all at once. Instead, we
eagerly load and render a few levels deep and then incrementally fetch further
subtrees as their parents are expanded in the UI. This means that we get new
Tree component instances across incremental fetches. Before this commit, the
Tree component stored a bunch of state internally (in this.state rather than
this.props) and we would lose focus and expansion state across incremental
fetches. This internal state has been pulled out and made as explicit props,
which are now managed by actions and reducers just like the rest of the state.

--HG--
rename : devtools/client/memory/components/tree-item.js => devtools/client/memory/components/census-tree-item.js
2016-01-13 12:27:30 -08:00
Mike Hommey
5ea47b3101 Bug 1229241 - Differentiate preprocessed and non-preprocessed JS pref files. r=gps 2015-12-01 13:57:52 +09:00
Hugo Arregui
ab07638c34 Bug 1198073 - Introduce a pref to set the max length of attributes or not truncat them; r=pbro
--HG--
extra : commitid : 3ZenCDTNl3C
2015-11-20 18:24:00 +01:00
Brian Grinstead
a000f5d58a Bug 1201962 - Enable service worker logging in web console by default;r=ejpbruel
--HG--
extra : commitid : FzdM3MDtd7T
2015-11-20 13:22:11 -08:00
Alexandre Poirot
10650ce81a Bug 1216590 - Merge last bits of app-manager into WebIDE. r=jryans
--HG--
rename : devtools/client/app-manager/app-projects.js => devtools/client/webide/modules/app-projects.js
rename : devtools/client/app-manager/app-validator.js => devtools/client/webide/modules/app-validator.js
rename : devtools/client/app-manager/test/test_app_validator.html => devtools/client/webide/test/test_app_validator.html
rename : devtools/client/app-manager/test/validator/no-name-or-icon/home.html => devtools/client/webide/test/validator/no-name-or-icon/home.html
rename : devtools/client/app-manager/test/validator/no-name-or-icon/manifest.webapp => devtools/client/webide/test/validator/no-name-or-icon/manifest.webapp
rename : devtools/client/app-manager/test/validator/non-absolute-path/manifest.webapp => devtools/client/webide/test/validator/non-absolute-path/manifest.webapp
rename : devtools/client/app-manager/test/validator/valid/alsoValid/manifest.webapp => devtools/client/webide/test/validator/valid/alsoValid/manifest.webapp
rename : devtools/client/app-manager/test/validator/valid/home.html => devtools/client/webide/test/validator/valid/home.html
rename : devtools/client/app-manager/test/validator/valid/icon.png => devtools/client/webide/test/validator/valid/icon.png
rename : devtools/client/app-manager/test/validator/valid/manifest.webapp => devtools/client/webide/test/validator/valid/manifest.webapp
rename : devtools/client/app-manager/test/validator/wrong-launch-path/icon.png => devtools/client/webide/test/validator/wrong-launch-path/icon.png
rename : devtools/client/app-manager/test/validator/wrong-launch-path/manifest.webapp => devtools/client/webide/test/validator/wrong-launch-path/manifest.webapp
rename : devtools/client/themes/app-manager/images/default-app-icon.png => devtools/client/webide/themes/default-app-icon.png
rename : devtools/client/themes/app-manager/images/noise.png => devtools/client/webide/themes/noise.png
rename : devtools/client/themes/app-manager/images/rocket.svg => devtools/client/webide/themes/rocket.svg
2015-11-02 08:18:58 -08:00
Jordan Santell
c6ee0927bd Bug 1215397 - Add state and UI for breakdowns in memory tool. r=fitzgen 2015-10-19 13:57:33 -07:00
Alexandre Poirot
d874c1f117 Bug 1204808 - Move devtools prefs to its own file in /devtools folder. r=jryans 2015-10-15 03:47:21 -07:00