diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2016-05-26 16:38:22 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-06-10 20:53:10 +0530 |
commit | b5255f011e66615e9c6c6a461fe200b11d62ccf2 (patch) | |
tree | f47e5b47fd0300be5c213a2a2bfbdd96284c1ce8 /components/net_traits/request.rs | |
parent | 96f34049286076c20ff91b260eb6a9651c0eecd6 (diff) | |
download | servo-b5255f011e66615e9c6c6a461fe200b11d62ccf2.tar.gz servo-b5255f011e66615e9c6c6a461fe200b11d62ccf2.zip |
Revamp Fetch async handling to use a fetch target and done channels
Diffstat (limited to 'components/net_traits/request.rs')
-rw-r--r-- | components/net_traits/request.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net_traits/request.rs b/components/net_traits/request.rs index 675a78fd788..be7a09e4b25 100644 --- a/components/net_traits/request.rs +++ b/components/net_traits/request.rs @@ -145,7 +145,7 @@ pub struct Request { pub url_list: RefCell<Vec<Url>>, pub redirect_count: Cell<u32>, pub response_tainting: Cell<ResponseTainting>, - pub done: Cell<bool> + pub done: Cell<bool>, } impl Request { |