Auto merge of #11768 - achals:blob-string, r=Ms2ger

Update Blob::{new, new_inherited} to take Strings

<!-- 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 #11762.

<!-- Either: -->
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because no logic changes, only interface changes.

<!-- 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="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11768)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-06-17 09:52:38 -05:00 committed by GitHub
commit 9208b8e214
5 changed files with 13 additions and 14 deletions

View file

@ -1111,7 +1111,7 @@ impl XMLHttpRequest {
// Step 3, 4
let slice = DataSlice::from_bytes(self.response.borrow().to_vec());
let blob = Blob::new(self.global().r(), BlobImpl::new_from_slice(slice), &mime);
let blob = Blob::new(self.global().r(), BlobImpl::new_from_slice(slice), mime);
self.response_blob.set(Some(blob.r()));
blob
}