mirror of
https://github.com/servo/servo.git
synced 2025-06-11 01:50:10 +00:00
Remove dead load_sync function.
This commit is contained in:
parent
db1163b1ec
commit
193d8f2dba
1 changed files with 1 additions and 9 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
use msg::constellation_msg::{PipelineId};
|
||||
use net_traits::AsyncResponseTarget;
|
||||
use net_traits::{Metadata, PendingAsyncLoad, ResourceTask, load_whole_resource};
|
||||
use net_traits::{PendingAsyncLoad, ResourceTask};
|
||||
use std::sync::Arc;
|
||||
use url::Url;
|
||||
|
||||
|
@ -78,14 +78,6 @@ impl DocumentLoader {
|
|||
pending.load_async(listener)
|
||||
}
|
||||
|
||||
/// Create, initiate, and await the response for a new network request.
|
||||
pub fn load_sync(&mut self, load: LoadType) -> Result<(Metadata, Vec<u8>), String> {
|
||||
self.blocking_loads.push(load.clone());
|
||||
let result = load_whole_resource(&self.resource_task, load.url().clone());
|
||||
self.finish_load(load);
|
||||
result
|
||||
}
|
||||
|
||||
/// Mark an in-progress network request complete.
|
||||
pub fn finish_load(&mut self, load: LoadType) {
|
||||
let idx = self.blocking_loads.iter().position(|unfinished| *unfinished == load);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue