aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/document_loader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/document_loader.rs')
-rw-r--r--components/script/document_loader.rs10
1 files changed, 1 insertions, 9 deletions
diff --git a/components/script/document_loader.rs b/components/script/document_loader.rs
index 2cfa9096d9c..c9241956bb5 100644
--- a/components/script/document_loader.rs
+++ b/components/script/document_loader.rs
@@ -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);