aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools
Commit message (Collapse)AuthorAgeFilesLines
...
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-1919-19/+19
|
* Update crossbeam-channel to 0.3Bastien Orivel2018-11-182-4/+4
|
* Remove useless `use crate_name;` imports.Simon Sapin2018-11-081-1/+0
| | | | A `crate_name::foo` path always works in 2018
* `cargo fix --edition-idioms`Simon Sapin2018-11-082-18/+8
|
* Reorder importsPyfisch2018-11-065-6/+6
|
* Format remaining filesPyfisch2018-11-068-34/+71
|
* Switch most crates to the 2018 editionSimon Sapin2018-11-061-0/+1
|
* Sort `use` statementsSimon Sapin2018-11-066-6/+6
|
* `cargo fix --edition`Simon Sapin2018-11-0617-50/+50
|
* Update hyper to 0.12Bastien Orivel2018-11-013-64/+55
|
* DevTools - add Emulation Actorcodehag2018-10-153-1/+47
|
* Auto merge of #21944 - codehag:devtools-add-thread-interrupt, r=jdmbors-servo2018-10-141-0/+16
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DevTools - add Interrupt method to ThreadActor This is one of three pull requests that allows the DevTools Debugger to render. The two related prs are #21942 and #21943 In this pr, I introduced the `interrupt` method to the threadActor. This is arguably a carry-over from the firefox devtools, where the debugger server is running in the same event loop as the content scripts, and it can only update itself when the debugger server is paused. Depending on how debugging is, or how debugging will be implemented on servo, this method may need to be adjusted for "debugger events" and "script events". After all three patches on this topic are merged, you should be able to see the debugger \o/ (but no sources yet) <img width="900" alt="screen shot 2018-10-14 at 16 57 07" src="https://user-images.githubusercontent.com/26968615/46918408-35f30180-cfd2-11e8-9a98-8e1540adc894.png"> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21944) <!-- Reviewable:end -->
| * DevTools - add Interrupt method to ThreadActorcodehag2018-10-141-0/+16
| |
* | Auto merge of #21943 - codehag:devtools-add-list-workers-method, r=jdmbors-servo2018-10-141-0/+20
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DevTools - add ListWorkers method to BrowsingContextTargetActor This is one of three pull requests that allows the DevTools Debugger to render. The two related prs are #21942 and #21944 This pr introduces a `ListWorkers` method, which the debugger relies on for startup. At the moment, we are returning an empty array, but later on we can return an array populated by all workers associated with a target. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21943) <!-- Reviewable:end -->
| * | remove any fields that are not totally necessarycodehag2018-10-141-3/+0
| | |
| * | DevTools - add ListWorkers method to BrowsingContextTargetActorcodehag2018-10-141-0/+23
| |/
* | Auto merge of #21942 - codehag:devtools-add-device-actor, r=jdmbors-servo2018-10-143-1/+121
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DevTools - add DeviceActor and update Root to own global actors This is one of three pull requests that allows the DevTools Debugger to render. This pr also introduces global actors to the root actor, the same as exists in FF devtools. At a later point I would like to reorganize this. The two related prs are #21943 and #21944 This is the most significant change of the three. It introduces both Device and Performance as global actors, and leaves the Performance actor also as a target actor. It also introduces the concept of ownership to the root actor, with regards to the two Global Actors. The Device actor as added to allow the JS Debugger to start up. This required the DeviceActor's `getDescription` method. `getDescription`, in the case of servo, returns a couple of basic fields that the debugger is interested in but doesn't use, specifically `apptype` -- which is returning a fake value of `servo`, and the version number `63.0`. The version number is interesting because devtools has [dropped support for any versions below 2 version numbers from the current firefox](https://searchfox.org/mozilla-central/rev/3a54520d8d2319a4116866371ed3d9ed2ec0cc2b/devtools/client/debugger/new/src/client/firefox/commands.js#398). This means that if we want the servo server to be supported, we will need to keep this number synced with FF's versioning. It isn't great, but hopefully we can introduce a different approach later on. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21942) <!-- Reviewable:end -->
| * | fix lint issuescodehag2018-10-141-4/+2
| | |
| * | DevTools - add DeviceActor and update Root to own global actorscodehag2018-10-143-1/+123
| |/
* / DevTools - add preliminary StyleSheetActorcodehag2018-10-143-1/+45
|/
* Bug 1172897 - Rename Tab Actor to BrowsingContextActorcodehag2018-09-233-34/+34
| | | | As part of [Bug 1172987](https://bugzilla.mozilla.org/show_bug.cgi?id=1172897) we renamed TabActor, as the actor does not represent tabs (as in a browser tab), it instead represents a browsing context as defined by the the [HTML standard](https://html.spec.whatwg.org/multipage/browsers.html#windows). In a later PR I will mirror the structure we have on devtools to have a targets folder, which contains all target types. At the moment it looks like servo only represents workers and browsing contexts.
* Replace mpsc with crossbeam/servo channel, update ipc-channelSimon Sapin2018-09-122-3/+5
| | | | Co-authored-by: Gregory Terzian <gterzian@users.noreply.github.com>
* Format components devtools and devtools_traits #21373kingdido9992018-09-0216-453/+650
|
* Bump env_logger to 0.5 and log to 0.4 in every servo crateBastien Orivel2018-03-281-1/+1
|
* Bump ipc-channel and bincodeBastien Orivel2018-03-211-1/+1
| | | | This required bumping uuid too which unfortunately duplicated rand.
* Update cookie to 0.10Anthony Ramine2017-11-241-1/+1
| | | | Except in webdriver, which source is in m-c.
* Bump bitflags to 1.0 in every servo crateBastien Orivel2017-10-301-3/+3
|
* Auto merge of #18968 - mbrubeck:try, r=emiliobors-servo2017-10-211-8/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | Use try syntax for Option where appropriate - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because they are refactoring only <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18968) <!-- Reviewable:end -->
| * Use try syntax for Option where appropriateMatt Brubeck2017-10-201-8/+2
| |
* | Backed out changeset e64e659c077d: servo PR #18809 and revendor for reftest ↵Gecko Backout2017-10-191-3/+3
|/ | | | | | failures, e.g. in layout/reftests/bugs/392435-1.html. r=backout on a CLOSED TREE Backs out https://github.com/servo/servo/pull/18809
* Update bitflags to 1.0 in every servo crateBastien Orivel2017-10-191-3/+3
| | | | | It still needs dependencies update to remove all the other bitflags versions.
* Update WR (details below):Glenn Watson2017-10-161-1/+1
| | | | | | | | | | * Add support for clip masks on text runs. * Fix atomic ordering of items with multiple shadows. * Update to bincode + ipc-channel with optimizations. * Fix some plane splitting precision errors. * Improve the anti-aliasing quality significantly. * Add internal ClipChain support. * Fix diacritic glyphs on Linux.
* Remove usage of unstable box syntax, except in the script crateSimon Sapin2017-10-125-19/+18
| | | | | … because there’s a lot of it, and script still uses any other unstable features anyway.
* Upgrade to rustc 1.21.0-nightly (13d94d5fa 2017-08-10)Simon Sapin2017-08-151-1/+1
|
* UntrySimon Sapin2017-06-183-7/+7
|
* Remove explicit dependencies on serde_deriveSimon Sapin2017-06-162-4/+1
|
* Bump serde to 1.0Bastien Orivel2017-06-162-7/+7
|
* Remove some usage of rust-encodingSimon Sapin2017-05-273-5/+1
|
* Fix indentation errors in servo rust code that tidy now finds.coalman2017-04-181-2/+2
|
* Update Hyper and OpenSSLddh2017-03-311-2/+2
|
* removed instances of -> () in existing codelucantrop2017-03-131-1/+1
|
* Kill the plugins crate and its clippy supportAnthony Ramine2017-02-212-5/+1
| | | | | | Sometimes clippy gets outdated by months, and its current support setup means that each Servo component need to opt into it by depending on the plugins crate manually, and not all components do that.
* Update serde to 0.9 (fixes #15325)Anthony Ramine2017-02-1816-83/+63
|
* Reorder some dependenciesAnthony Ramine2017-02-181-1/+1
|
* Update ipc-channel to 0.6.3Anthony Ramine2017-02-161-1/+1
|
* Update rustc to 1.16.0-nightly (7821a9b99 2017-01-23).Ms2ger2017-01-241-2/+0
|
* Upgrade to rustc 1.16.0-nightly (6f1ae663e 2017-01-06)Simon Sapin2017-01-061-1/+0
|
* replace match by if let statements if possibleJulien Levesy2016-12-311-8/+5
|
* Removed util.Alan Jeffrey2016-12-143-12/+9
|
* Remove #![feature(custom_attribute)]Anthony Ramine2016-11-031-1/+0
|