Граф коммитов

79 Коммитов

Автор SHA1 Сообщение Дата
Bill McCloskey 633d4a3ecf Bug 967873 - Test changes for async removeTab (r=Gijs) 2015-10-01 21:18:05 -07:00
Carsten "Tomcat" Book 33f768c66b Merge m-c to mozilla-inbound 2015-10-01 14:15:17 +02:00
Carsten "Tomcat" Book 07ed19e582 merge mozilla-inbound to mozilla-central a=merge 2015-10-01 12:39:25 +02:00
Nick Fitzgerald 30e17cfd82 Bug 1196461 - De-duplicate strings in heap snapshot core dumps; r=shu,jimb
This changeset replaces all of the

    // char16_t[]
    optional bytes someProperty = 1;

one- and two-byte string properties in the CoreDump.proto protobuf definition
file with:

    oneof {
        // char16_t[]
        bytes  someProperty    = 1;
        uint64 somePropertyRef = 2;
    }

The first time the N^th unique string is serialized, then someProperty is used
and the full string is serialized in the protobuf message. All following times
that string is serialized, somePropertyRef is used and its value is N.

Among the other things, this also changes JS::ubi::Edge::name from a raw pointer
with commented rules about who does or doesn't own and should and shouldn't free
the raw pointer to a UniquePtr that enforces those rules rather than relying on
developers reading and obeying the rules in the comments.
2015-09-30 16:03:31 -07:00
Brian Grinstead 0957a11e6c Bug 1208544 - Listen to nativeAnonymousChildList changes from devtools;r=pbrosset
--HG--
extra : commitid : DOZUfglfNIy
2015-09-24 08:23:34 -07:00
Wes Kocher 296abd21ee Merge m-c to inbound a=merge
--HG--
extra : rebase_source : 38a51b2c491658bc19cfac0d227b04ef6e5f6718
2015-09-30 14:10:21 -07:00
Tooru Fujisawa 347f644495 Bug 1207499 - Part 14: Remove use of expression closure from devtools/. r=pbrosset
--HG--
extra : commitid : 5hWCVtCcRzD
extra : rebase_source : 50c89db21c46a03563e6b6a3e2d2e7d628e461ae
2015-09-24 21:31:45 +09:00
Tooru Fujisawa 09d2efec2f Bug 1207490 - Part 6: Remove use of expression closure from browser/devtools/. r=vporof
--HG--
extra : commitid : 6e020fSx4WI
extra : rebase_source : 1a202ee1b6dbf9eacae06f1200e66aa6d98ce05b
2015-09-21 02:25:07 +09:00
Michael Ratcliffe 3efb3a9e6f Bug 1203520 - We need a DevTools ESLint plugin containing our ruleset r=gps
--HG--
extra : commitid : FrMOnVBUxmY
extra : rebase_source : c38511e94177f651a0decad41180991c54cb0f33
2015-09-30 14:44:48 +01:00
Kevin Grandon d176e0d847 Bug 1204965 - Graphene support. Merge larch into mozilla-central. r=fabrice r=glandium 2015-09-30 23:49:00 +02:00
Tom Tromey ab00bd72c5 Bug 1209077 - handle cached empty string in StyleSheetActor._getText; r=bgrins,pbrosset 2015-09-28 07:28:00 +02:00
Tom Tromey f553914c78 Bug 1197967 - preserve spelling of urls in output-parser.js; r=pbrosset 2015-09-28 07:10:00 +02:00
Jan Keromnes e3cff67d47 Bug 1196785 - Drive-by fix DevTools ESLint config. r=pbrosset 2015-09-28 05:49:00 +02:00
Jan Keromnes 527a48e616 Bug 1196785 - Add rootActor.listWorkers() to list all registered workers. r=past p=ally 2015-09-28 03:58:00 +02:00
Jan Keromnes 2edb943321 Bug 1196785 - Add worker type to WorkerActor form. r=past 2015-09-28 03:56:00 +02:00
Jordan Santell 81bf354b51 Bug 1209702 - Remove references to vestigial/unimplemented forceCompletion in ThreadActor r=fitzgen 2015-09-29 17:11:36 -07:00
Wes Kocher 7ad31ba897 Backed out changeset 04d495a253a9 (bug 1209702) for linux 64 static build failures 2015-09-29 15:52:36 -07:00
Jordan Santell a3eed2c9c6 Bug 1209702 - Remove references to vestigial/unimplemented forceCompletion in ThreadActor r=fitzgen 2015-09-29 13:42:03 -07:00
Wes Kocher 44ef94bfa1 Backed out 5 changesets (bug 1132203) for devtools bustage
Backed out changeset ed8ce0300161 (bug 1132203)
Backed out changeset f6fa722a8636 (bug 1132203)
Backed out changeset ce3ca3b43597 (bug 1132203)
Backed out changeset f8edd4fa4d00 (bug 1132203)
Backed out changeset d618bbcee986 (bug 1132203)
2015-09-29 10:07:24 -07:00
Brian Grinstead 12a7a5adc8 Bug 1209342 - Ignore attribute changes from Mutation Observer with null newValue;r=pbrosset
--HG--
extra : commitid : 5sjUqKOapG7
2015-09-29 08:45:24 -07:00
Carsten "Tomcat" Book 191ce6efd0 Merge mozilla-central to fx-team 2015-09-29 12:41:12 +02:00
Alexandre Poirot 97a6bb24a3 Bug 1188413 - Introduce key shortcut to reload tools r=past 2015-09-29 03:06:25 -07:00
Carsten "Tomcat" Book b63d7b04fc merge mozilla-inbound to mozilla-central a=merge 2015-09-29 12:00:25 +02:00
Gabriel Luong eefce217b9 Bug 1132557 - Part 2: Apply fixes for CodeMirror 5.7.0 upgrade r=bgrins
* * *
Bug 1132557 - Part 3: Apply CodeMirror customization for search.js r=bgrins
* * *
Bug 1132557 - Part 8: Editor config option should be updated r=bgrins
* * *
Bug 1132557 - Part 9: Editor should emit a cursorActivity on setCursor r=bgrins
* * *
Bug 1132557 - Part 10: Make Debugger breadrumbs keyboard access test by refocusing the stack frame r=bgrins
* * *
Bug 1132557 - Part 11: Scratchpad should use capture on the paste event r=bgrins
* * *
Bug 1132557 - Part 12: Stylesheet Editor should always batch up updates r=bgrins
2015-09-28 14:55:51 -07:00
Gabriel Luong bc8c1a0fe9 Bug 1132557 - Part 1: Upgrade to CodeMirror 5.7.0 r=bgrins
* * *
Bug 1132557 - Part 1: Update CodeMirror License r=bgrins
* * *
Bug 1132557 - Part 2: Upgrade existing addons to CodeMirror 5.7.0 r=bgrins
* * *
Bug 1132557 - Part 4: Upgrade existing CodeMirror keymap to 5.7.0 r=bgrins
* * *
Bug 1132557 - Part 5: Upgrade existing CodeMirror mode to 5.7.0 r=bgrins
* * *
Bug 1132557 - Part 6: Upgrade to CodeMirror 5.7.0 r=bgrins
* * *
Bug 1132557 - Part 7: Upgrade existing CodeMirror tests to 5.7.0 r=bgrins
* * *
Bug 1132557 - Part 13: Update CodeMirror README for version 5.7.0 r=bgrins
2015-09-28 14:55:48 -07:00
Jan Odvarko 2cd8e4ed23 Bug 1132203 - Load JSON viewer only for top level documents; r=bz 2015-09-28 13:48:33 +02:00
Jan Odvarko d325233684 Bug 1132203 - Load JSON viewer dynamically on demand; r=jryans 2015-09-28 13:34:03 +02:00
Jan Odvarko ce3fd64696 Bug 1132203 - Tests for JSON Viewer; r=jryans 2015-09-28 13:33:45 +02:00
Jan Odvarko d2b07e390c Bug 1132203 - JSON Viewer for application/json documents. r=jlong 2015-09-28 13:33:20 +02:00
Jan Odvarko 575d8e8aad Bug 1132203 - Libs for JSON Viewer. r=jlong 2015-09-28 13:32:37 +02:00
Matteo Ferretti 2a149c16f4 Bug 1089240 - Add a measurement tool. r=pbrosset 2015-09-28 15:14:00 +02:00
Cameron McCormack cdc57a2245 Bug 1198708 - Part 3: Serialize computed {transition,animation}-timing-function using their specified values. r=birtles
The CSS Transitions and Animations specs define the computed value of
a {transition,animation}-timing-function property as being the same as
the specified value, so we should expose the specific value we recorded
on nsTimingFunction in Part 1 through nsComputedDOMStyle.
2015-09-29 12:20:14 +10:00
Gijs Kruitbosch 5dd3837ea4 Bug 636905 - part 3: flip prefs in tests to keep them working, r=jaws
--HG--
extra : commitid : 5ctg1uTZzZd
extra : rebase_source : 953ba9df408b24a340074abeb1a05a2c02b2bbf6
2015-09-26 15:01:51 +01:00
Jordan Santell a0f9240c5f Bug 1201949 - Initial redux-style controllers for front end memory tool heap snapshot. r=jlongster 2015-09-25 20:09:58 -07:00
Victor Porof 1c6f4508d5 Bug 1207937 - Increase timeout for browser_timeline-waterfall-generic.js, r=me 2015-09-26 14:44:50 +02:00
Victor Porof 2c7d6ec854 Bug 1196947 - Performance tools should display a message in private browsing, r=jsantell 2015-09-26 06:21:09 +02:00
Nick Fitzgerald 3742b835d8 Bug 1207645 - Create HeapSnapshotFileActor; r=jryans
This commit creates the HeapSnapshotFileActor and moves the transferHeapSnapshot
method from MemoryActor to HeapSnapshotFileActor. This is necessary because
child processes in e10s are sandboxed and do not have access to the file system,
and because MemoryActor is in the sandboxed child process it cannot open the
file and send it over the RDP.

This complexity is hidden at the MemoryFront layer. Users of MemoryFront will
still simply call its saveHeapSnapshot method, and do not need to worry about
the inner workings of how heap snapshot files are transferred over the RDP. This
required adding a third parameter to MemoryFront's initialize method: the
listTabs response.
2015-09-25 15:35:02 -07:00
Gabriel Luong e925638a5f Bug 1206425 - Reorganize CodeMirror file structure for easier upgrades r=bgrins
--HG--
rename : devtools/client/sourceeditor/codemirror/comment/comment.js => devtools/client/sourceeditor/codemirror/addon/comment/comment.js
rename : devtools/client/sourceeditor/codemirror/comment/continuecomment.js => devtools/client/sourceeditor/codemirror/addon/comment/continuecomment.js
rename : devtools/client/sourceeditor/codemirror/dialog/dialog.css => devtools/client/sourceeditor/codemirror/addon/dialog/dialog.css
rename : devtools/client/sourceeditor/codemirror/dialog/dialog.js => devtools/client/sourceeditor/codemirror/addon/dialog/dialog.js
rename : devtools/client/sourceeditor/codemirror/edit/closebrackets.js => devtools/client/sourceeditor/codemirror/addon/edit/closebrackets.js
rename : devtools/client/sourceeditor/codemirror/edit/closetag.js => devtools/client/sourceeditor/codemirror/addon/edit/closetag.js
rename : devtools/client/sourceeditor/codemirror/edit/continuelist.js => devtools/client/sourceeditor/codemirror/addon/edit/continuelist.js
rename : devtools/client/sourceeditor/codemirror/edit/matchbrackets.js => devtools/client/sourceeditor/codemirror/addon/edit/matchbrackets.js
rename : devtools/client/sourceeditor/codemirror/edit/matchtags.js => devtools/client/sourceeditor/codemirror/addon/edit/matchtags.js
rename : devtools/client/sourceeditor/codemirror/edit/trailingspace.js => devtools/client/sourceeditor/codemirror/addon/edit/trailingspace.js
rename : devtools/client/sourceeditor/codemirror/fold/brace-fold.js => devtools/client/sourceeditor/codemirror/addon/fold/brace-fold.js
rename : devtools/client/sourceeditor/codemirror/fold/comment-fold.js => devtools/client/sourceeditor/codemirror/addon/fold/comment-fold.js
rename : devtools/client/sourceeditor/codemirror/fold/foldcode.js => devtools/client/sourceeditor/codemirror/addon/fold/foldcode.js
rename : devtools/client/sourceeditor/codemirror/fold/foldgutter.css => devtools/client/sourceeditor/codemirror/addon/fold/foldgutter.css
rename : devtools/client/sourceeditor/codemirror/fold/foldgutter.js => devtools/client/sourceeditor/codemirror/addon/fold/foldgutter.js
rename : devtools/client/sourceeditor/codemirror/fold/indent-fold.js => devtools/client/sourceeditor/codemirror/addon/fold/indent-fold.js
rename : devtools/client/sourceeditor/codemirror/fold/markdown-fold.js => devtools/client/sourceeditor/codemirror/addon/fold/markdown-fold.js
rename : devtools/client/sourceeditor/codemirror/fold/xml-fold.js => devtools/client/sourceeditor/codemirror/addon/fold/xml-fold.js
rename : devtools/client/sourceeditor/codemirror/hint/show-hint.js => devtools/client/sourceeditor/codemirror/addon/hint/show-hint.js
rename : devtools/client/sourceeditor/codemirror/search/match-highlighter.js => devtools/client/sourceeditor/codemirror/addon/search/match-highlighter.js
rename : devtools/client/sourceeditor/codemirror/search/search.js => devtools/client/sourceeditor/codemirror/addon/search/search.js
rename : devtools/client/sourceeditor/codemirror/search/searchcursor.js => devtools/client/sourceeditor/codemirror/addon/search/searchcursor.js
rename : devtools/client/sourceeditor/codemirror/selection/active-line.js => devtools/client/sourceeditor/codemirror/addon/selection/active-line.js
rename : devtools/client/sourceeditor/codemirror/selection/mark-selection.js => devtools/client/sourceeditor/codemirror/addon/selection/mark-selection.js
rename : devtools/client/sourceeditor/codemirror/tern/tern.css => devtools/client/sourceeditor/codemirror/addon/tern/tern.css
rename : devtools/client/sourceeditor/codemirror/tern/tern.js => devtools/client/sourceeditor/codemirror/addon/tern/tern.js
rename : devtools/client/sourceeditor/codemirror/codemirror.css => devtools/client/sourceeditor/codemirror/lib/codemirror.css
rename : devtools/client/sourceeditor/codemirror/codemirror.js => devtools/client/sourceeditor/codemirror/lib/codemirror.js
rename : devtools/client/sourceeditor/test/codemirror.html => devtools/client/sourceeditor/test/codemirror/codemirror.html
rename : devtools/client/sourceeditor/test/cm_comment_test.js => devtools/client/sourceeditor/test/codemirror/comment_test.js
rename : devtools/client/sourceeditor/test/cm_doc_test.js => devtools/client/sourceeditor/test/codemirror/doc_test.js
rename : devtools/client/sourceeditor/test/cm_driver.js => devtools/client/sourceeditor/test/codemirror/driver.js
rename : devtools/client/sourceeditor/test/cm_emacs_test.js => devtools/client/sourceeditor/test/codemirror/emacs_test.js
rename : devtools/client/sourceeditor/test/cm_mode_javascript_test.js => devtools/client/sourceeditor/test/codemirror/mode/javascript/test.js
rename : devtools/client/sourceeditor/test/cm_mode_test.css => devtools/client/sourceeditor/test/codemirror/mode_test.css
rename : devtools/client/sourceeditor/test/cm_mode_test.js => devtools/client/sourceeditor/test/codemirror/mode_test.js
rename : devtools/client/sourceeditor/test/cm_multi_test.js => devtools/client/sourceeditor/test/codemirror/multi_test.js
rename : devtools/client/sourceeditor/test/cm_search_test.js => devtools/client/sourceeditor/test/codemirror/search_test.js
rename : devtools/client/sourceeditor/test/cm_sublime_test.js => devtools/client/sourceeditor/test/codemirror/sublime_test.js
rename : devtools/client/sourceeditor/test/cm_test.js => devtools/client/sourceeditor/test/codemirror/test.js
rename : devtools/client/sourceeditor/test/cm_vim_test.js => devtools/client/sourceeditor/test/codemirror/vim_test.js
rename : devtools/client/sourceeditor/test/vimemacs.html => devtools/client/sourceeditor/test/codemirror/vimemacs.html
2015-09-25 11:34:06 -07:00
Carsten "Tomcat" Book a1b0ef663b Backed out 1 changesets (bug 1207645) for Mulet Gaia JS Integration Test Gij 21 and 4 perma test failures
Backed out changeset a23053342d5b (bug 1207645)
2015-09-25 16:54:34 +02:00
Carsten "Tomcat" Book e7d6f7ce2c merge mozilla-inbound to mozilla-central a=merge 2015-09-25 14:39:34 +02:00
Nick Fitzgerald 3dd24d960d Bug 1207645 - Create HeapSnapshotFileActor; r=jryans
This commit creates the HeapSnapshotFileActor and moves the transferHeapSnapshot
method from MemoryActor to HeapSnapshotFileActor. This is necessary because
child processes in e10s are sandboxed and do not have access to the file system,
and because MemoryActor is in the sandboxed child process it cannot open the
file and send it over the RDP.

This complexity is hidden at the MemoryFront layer. Users of MemoryFront will
still simply call its saveHeapSnapshot method, and do not need to worry about
the inner workings of how heap snapshot files are transferred over the RDP. This
required adding a third parameter to MemoryFront's initialize method: the
listTabs response.
2015-09-24 17:19:03 -07:00
Daniel Holbert 0fa3772aff Bug 1169974 part 2: Tell clang to ignore inconsistent-missing-override warnings for MOCK_METHOD2 macro from gtests. r=njn 2015-09-24 16:16:14 -07:00
Nick Fitzgerald 896a2e9849 Bug 1206290 - Part 0: Move js/UbiNodeTraverse.h to js/UbiNodeBreadthFirst.h; r=sfink
--HG--
rename : js/public/UbiNodeTraverse.h => js/public/UbiNodeBreadthFirst.h
2015-09-24 14:01:22 -07:00
Nathan Froyd 5761751aa3 Bug 1207245 - part 1 - move RefCounted<T> to its own file
Various bits depend on RefPtr.h to provide RefCounted<T> and RefPtr<T>.
It will be easier to manage an automatic conversion from RefPtr<T> to
nsRefPtr<T> if we split out the dependency on RefCounted<T> first.
2015-09-22 21:27:34 -04:00
Carsten "Tomcat" Book 2376775adf merge mozilla-inbound to mozilla-central a=merge 2015-09-24 12:03:40 +02:00
Wes Kocher e4fc739f11 Merge m-c to fx-team, a=merge CLOSED TREE 2015-09-23 13:26:00 -07:00
Wes Kocher 46c7f8fbad Merge fx-team to central, a=merge CLOSED TREE 2015-09-23 13:22:10 -07:00
Xidorn Quan 5443426946 Bug 1207443 - Change browser_parsable_css.js to load stylesheets with chrome privilege. r=Gijs
--HG--
extra : source : 1c67eb89eed64974a955a0bf5def2537fb3d17a6
2015-09-23 22:15:04 +10:00
Carsten "Tomcat" Book 292376c78a merge mozilla-inbound to mozilla-central a=merge 2015-09-23 12:28:10 +02:00
Wes Kocher 15e1bb7d7a Merge m-c to inbound, a=merge CLOSED TREE 2015-09-23 13:23:42 -07:00