aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools/protocol.rs
Commit message (Collapse)AuthorAgeFilesLines
* DevTools: Replace camel case variable names (#32726)eri2024-07-081-1/+2
| | | | | | | | | * refactor: rename to snake case * refactor: more renaming * chore: format * chore: clean
* DevTools: Implement watcher actor (#32509)eri2024-06-211-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | * feat: base for watcher * feat: some more watcher tests * feat: implement getWatcher * refactor: clean up getWatcher * feat: implement watchTargets * feat: implement watchResources * feat: very messy watchTargets fix * refactor: clean browsing context * feat: target configuration * refactor: start cleanup * refactor: more doc coments * refactor: clean browsing context
* clippy: Fix several warnings in components/devtools (#31501)eri2024-03-051-1/+1
|
* rustdoc: Fix many rustdoc errors (#31147)Martin Robinson2024-01-221-2/+1
| | | | This fixes many rustdoc errors that occur due to raw URLs in rustdoc comments as well as unescaped Rust code that should be in backticks.
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-3/+4
| | | | | * strict imports formatting * Reformat all imports
* remove `extern crate` (#30311)Samson2023-09-081-0/+1
| | | | | | | | | | | * remove extern crate * Update components/script_plugins/lib.rs Co-authored-by: Martin Robinson <mrobinson@igalia.com> --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* devtools: Don't panic when sending to a disconnected client fails.Josh Matthews2020-08-051-10/+22
|
* Fix some warnings in future Rust nightliesSimon Sapin2020-01-021-3/+2
|
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* Format components devtools and devtools_traits #21373kingdido9992018-09-021-2/+2
|
* Update serde to 0.9 (fixes #15325)Anthony Ramine2017-02-181-10/+3
|
* Update serde to 0.8 (fixes #12659)Anthony Ramine2016-08-121-3/+0
|
* Make the net monitor panel in FF's devtools show meaningful output.Josh Matthews2016-06-061-0/+14
| | | | | | | | | | | | | 0) Advertise support for the network monitor in the initial protocol communication. 1) Only notify the developer tools server about the final request in an HTTP transaction. 2) Add timing information for connecting to the HTTP server and sending the HTTP request. 3) Reduce duplication between various networkEventUpdate structures by creating a helper function that merges two JSON structures together. This also corrects the JSON structure so the devtools client interprets the output correctly. 4) Calculate various header size fields correctly. 5) Remove unnecessary usize->u32 casts by making the appropriate fields usize. 6) Add header values to request and response header messages. 7) Support triggering page reloads via the devtools client.
* Implement a dummy protocolDescription in the root actorAnthony Ramine2016-05-301-0/+14
|
* Use debug instead of println in devtoolsManish Goregaokar2016-05-271-2/+2
|
* Use serde in devtoolsAnthony Ramine2016-03-311-11/+17
|
* Fix a bunch of clippy lintsJohannes Linke2016-01-021-3/+3
|
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-1/+1
|
* Stop calling to_string() in devtools.Ms2ger2015-09-021-4/+4
|
* Cleanup write_json_packet.Ms2ger2015-09-021-3/+1
|
* sort all usesJohann Tuffe2015-08-201-1/+1
|
* Fixes #6879Harrison G2015-08-051-10/+25
|
* Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.Simon Sapin2015-05-051-7/+6
|
* Move devtools to std::net (fixes #5355).Ms2ger2015-03-251-15/+18
|
* Update some code that's feature-gated under core.Ms2ger2015-03-211-4/+4
|
* Use rustc-serialize rather than the built-in deprecated serialize.Ms2ger2015-02-171-3/+3
|
* Upgrade to rustc ba2f13ef0 2015-02-04Simon Sapin2015-02-111-2/+2
|
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-2/+2
|
* Disallow lines that span more than 160 columns.Ms2ger2015-01-191-1/+3
| | | | | The Rust style guide suggests 100, but we have too many violations in the tree already. This check can be tightened over time.
* Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19.Ms2ger2015-01-081-2/+3
|
* Fix obsolete format traits.Ms2ger2015-01-021-2/+2
| | | | They are to be removed from the language in the next rust upgrade.
* Move code related to json packet reading to JsonPacketSender traitthiagopnts2014-11-121-3/+28
| | | | fixup! Move code related to json packet reading to JsonPacketSender trait
* Split devtools implementation into sensible modules.Josh Matthews2014-09-181-0/+22