aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools
Commit message (Collapse)AuthorAgeFilesLines
...
* Final stepsGauriGNaik2016-01-111-0/+13
|
* task -> threadrohan.prinja2016-01-102-4/+4
|
* Fix a bunch of clippy lintsJohannes Linke2016-01-022-6/+5
|
* Issue #9042: Report incorrect number of spaces around => in the style checker.Simon Martin2015-12-231-3/+3
|
* Support responseCookies, responseContent, responseHeaders, requestCookies, ↵Abhishek Kumar2015-12-212-21/+387
| | | | | | | | | getResponseHeaders, getResponseContent, getRequestPostData, getRequestCookies, getResponseCookies, getEventTimings and getSecurityInfo message for network devtools Fixing Indentation
* Use Url.join instead of UrlParser.base_url(...).parse (#9002)Mathieu Agopian2015-12-181-1/+1
|
* Moved WorkerId type to devtools_traitsFlorian Strübe2015-12-072-3/+3
|
* Use thread::sleep instead of deprecated sleep_msJames Sanders2015-11-291-3/+4
| | | | | | Similarly, change one instance of `thread::park_timeout_ms`. Fixes #8694
* Auto merge of #8692 - GuillaumeGomez:patch-1, r=Wafflespeanutbors-servo2015-11-281-2/+2
|\ | | | | | | | | | | | | | | | | | | Ensure crate are alphabetically sorted cc @nox <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8692) <!-- Reviewable:end -->
| * Add check up on extern crate order and sort extern crates alphabeticallyGuillaume Gomez2015-11-281-2/+2
| |
* | Upgrade to rustc 1.6.0-nightly (d5fde83ae 2015-11-12)Manish Goregaokar2015-11-271-9/+2
|/ | | | … and libc 0.2 and many other dependencies
* Update `ipc-channel` to pick up the improved error reporting.Patrick Walton2015-11-231-1/+1
| | | | Intended to help diagnose intermittent failures.
* Replaced DOMString by String in devtools.Alan Jeffrey2015-11-122-8/+8
|
* refactor(devtools/lib.rs): Remove unused importRizky Luthfianto2015-11-101-1/+1
| | | Removed `RecvError` imports from #L57
* Use while let{} instead of loop{match{}} in run_server()Raphael Nestler2015-11-091-13/+12
|
* Make DOMString a newtype around String, rather than a typedef.Ms2ger2015-11-042-8/+8
| | | | | | | | | | This should make it somewhat easier to experiment with alternative representations in the future. To reduce churn, this commit leaves the String field public, though. Also, this will allow us to use the default String type to represent the IDL USVString type, which explicitly forbids unpaired surrogates, ans as such is a better match to the Rust String type.
* Fix serde_macrosManish Goregaokar2015-10-281-1/+1
|
* Make it possible for iframes to create their own pipeline ID.Glenn Watson2015-10-061-1/+1
| | | | | | | | This doesn't change any functionality, but it's the first step towards removing SubpageId. Adding this change now will allow us to gradually change over code referencing subpage id rather than in one massive PR. Introduces a namespace for pipeline ID generation - there is a namespace for the constellation thread, and one per script thread.
* tests for devtools integration with network requests/responsesPrabhjyot Singh Sodhi2015-09-252-15/+16
|
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-2414-29/+28
|
* Upgrade rust to f93ab64d4a1a7ee91759a1594ab2a426b6cc657e/rustc-1.5.0-dev.Manish Goregaokar2015-09-231-1/+1
|
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-1910-32/+19
| | | | This merges import blocks that were reported by tidy as unmerged.
* Remove 'get_*' on getters as per RFC 0344 on various componentsMathieu Rheaume2015-09-122-2/+2
|
* Make devtools depend on plugins.Ms2ger2015-09-022-0/+4
|
* Stop calling to_string() in devtools.Ms2ger2015-09-029-68/+68
|
* Cleanup write_json_packet.Ms2ger2015-09-021-3/+1
|
* Simplify reflection usage in Actor code.Eli Friedman2015-08-313-63/+15
| | | | The fixed version is shorter, and doesn't use unstable features.
* Send the start and end half of a TimelineMarker to the devtools ↵Ms2ger2015-08-281-68/+9
| | | | PullTimelineMarkers thread together.
* Remove Emitter::markers.Ms2ger2015-08-261-14/+14
| | | | | The vector is filled in and immediately emptied again. It is clearer to keep the vector in the caller instead.
* sort all usesJohann Tuffe2015-08-208-16/+16
|
* Cleanup ActorRegistry::create_shareable.Ms2ger2015-08-191-7/+9
|
* Replace uses of `for foo in bar.iter()`,João Oliveira2015-08-182-3/+3
| | | | | and `for foo in bar.iter_mut(), and for foo in bar.into_iter() (continuation of #7197)
* Fix existing syntactics nits.Josh Matthews2015-08-162-6/+6
|
* Implement a PerformanceActor.Ms2ger2015-08-153-2/+83
| | | | | | | | This is necessary for the devtools "Start Recording Performance" button to send a message. (This message is not yet supported, so it leads to 'unexpected message type "startRecording" found for actor "performance4"'.)
* Replace uses of `for foo in bar.iter()` and `for foo in bar.iter_mut()`João Oliveira2015-08-152-5/+5
| | | | closes #7197
* Use external mutability for FramerateActor::ticks.Ms2ger2015-08-142-13/+8
|
* Actor::handle_message should return an enum instad of a boolean #7110 r=jdmFabrice Desré2015-08-1312-76/+83
|
* Auto merge of #7192 - Ms2ger:profiler, r=jdmbors-servo2015-08-133-2/+46
|\ | | | | | | | | | | | | | | | | | | Implement a ProfilerActor struct. This is sufficient to make the profiler tab show up in Firefox's devtools. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7192) <!-- Reviewable:end -->
| * Implement a ProfilerActor struct.Ms2ger2015-08-133-2/+46
| | | | | | | | This is sufficient to make the profiler tab show up in Firefox's devtools.
* | Auto merge of #7132 - jdm:docenum, r=ms2gerbors-servo2015-08-134-81/+25
|\ \ | |/ |/| | | | | | | | | | | | | | | Document the use and meaning of the devtools control messages. Fixes … …#6922. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7132) <!-- Reviewable:end -->
| * Improve documentation for devtools messages a bit more.Josh Matthews2015-08-131-2/+2
| |
| * Warning police.Josh Matthews2015-08-123-20/+9
| |
| * Simplify devtools frame marker notification. Record each frame tick based on ↵Josh Matthews2015-08-122-59/+14
| | | | | | | | a single message sent from the script task that ticked.
* | Disallow unsafe code in the devtools and devtools_traits crates.Ms2ger2015-08-122-0/+3
|/
* Auto merge of #7140 - wilmoz:master, r=jdmbors-servo2015-08-111-1/+1
|\ | | | | | | | | | | | | | | | | | | Remove Message suffix from NetworkEventMessage https://github.com/servo/servo/issues/7129 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7140) <!-- Reviewable:end -->
| * Remove Message suffix from NetworkEventMessagewilmoz2015-08-101-1/+1
| |
* | Rename SendConsoleMessage to ConsoleAPIBrandon Fairchild2015-08-101-1/+1
|/ | | | Fixes #7131.
* Remove unused import.Ms2ger2015-08-101-1/+0
|
* Closes #6724 (Allows object evaluation in devtools)Harrison G2015-08-093-7/+56
| | | | | | | | | | | | | | The purpose of this is to fix how objects were previously evaluated in the developer tools. - Before this, evaluating an object such as the `window` would `panic!` - After this, evaluating an object such as the `window` outputs `[object Window]` A few things to note: - This commit contains `unsafe` code. - This does not contain a test because the developer tools cannot be properly tested until #5971 lands.
* servo: Update `ipc-channel` to pick up `bincode` support.Patrick Walton2015-08-081-2/+2
| | | | Large improvement in page load times, especially in debug builds.