aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/blob_loader.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused part of the return value of parse_blob_url().Ms2ger2017-01-301-1/+1
|
* Remove the unused CancellationListener arguments in filemanager_thread.Ms2ger2016-11-241-1/+1
|
* Remove CoreResourceMsg::Load.Ms2ger2016-11-241-105/+1
| | | | | | | | Also remove now-dead code that rustc warns about. It turns out that we lost support for some of our custom URL schemes; I intend to reimplement them, but I believe this will be significantly easier to do once the legacy code is out of the way.
* Pass the UIProvider to FileManager::handle() as needed.Ms2ger2016-11-211-7/+6
|
* Factor out FileManager::read_file().Ms2ger2016-11-211-5/+3
|
* Urlmageddon: Use refcounted urls more often.Emilio Cobos Álvarez2016-11-171-2/+2
|
* Implement blob url support in the fetch stack.Ms2ger2016-10-141-0/+70
|
* Stop wrapping FileManager in an Arc.Ms2ger2016-10-141-2/+2
| | | | It already contains an Arc internally.
* Reorder `use` statementsUK9922016-09-091-6/+6
|
* dom::Response implementationMalisa Smith2016-09-061-2/+1
|
* Burn SelectedFileId in fireZhen Zhang2016-08-221-2/+1
|
* Update serde to 0.8 (fixes #12659)Anthony Ramine2016-08-121-3/+4
|
* Add cancellability to file manager load and related refactoringZhen Zhang2016-08-021-12/+10
|
* Chunked ReadFile from file managerZhen Zhang2016-07-251-6/+34
|
* Put Blob URL onlineZhen Zhang2016-07-151-38/+77
|
* Auto merge of #12416 - canaltinova:referrer, r=jdmbors-servo2016-07-141-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement Document.referrer <!-- Please describe your changes on the following line: --> --- <!-- 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 - [X] These changes fix #12389 (github issue number if applicable). <!-- Either: --> - [X] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- 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/12416) <!-- Reviewable:end -->
| * Implement Document.referrerNazım Can Altınova2016-07-141-0/+1
| |
* | Refactor FileAPI implementationZhen Zhang2016-07-131-11/+6
|/
* Spawn threads for requests in file manager and other style fixesZhen Zhang2016-07-081-2/+2
|
* Integration and improvements of File API backendsZhen Zhang2016-07-041-40/+14
| | | | | | 1. More complete origin check in FileManagerThreadMsg 2. Add reference counting logic to file manage store and script API 3. Integrate the support of slicing
* Rename `MIMEClassifier` to match Rust acronym naming conventions.Corey Farwell2016-07-021-3/+3
| | | | e.g. `std::net::TcpStream`
* Add blob loaderZhen Zhang2016-06-061-0/+87