diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-14 20:02:58 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-14 20:02:58 +0530 |
commit | c929dbe2530f979ce6e84d5a25ea47318ff0910e (patch) | |
tree | d3afda570ffc82c4359d490f21880d99722f0c32 /components/script/dom/htmllinkelement.rs | |
parent | 3f74c07e2025671d867e94acd28e706ce6fe236e (diff) | |
parent | 076cc409e6a122ef377bd8230c51c12ab1203213 (diff) | |
download | servo-c929dbe2530f979ce6e84d5a25ea47318ff0910e.tar.gz servo-c929dbe2530f979ce6e84d5a25ea47318ff0910e.zip |
Auto merge of #9576 - kmuszyn:9561-rename-thread-to-task, r=jdm
Issue #9561 Renamed *_thread_source to *_task_source window.rs
Related to: https://github.com/servo/servo/issues/9561
Renamed *thread_source to *_task_source in components/script/dom/window.rs and files that use window methods.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9576)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/htmllinkelement.rs')
-rw-r--r-- | components/script/dom/htmllinkelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmllinkelement.rs b/components/script/dom/htmllinkelement.rs index 683b8cc6a84..00d382e48fc 100644 --- a/components/script/dom/htmllinkelement.rs +++ b/components/script/dom/htmllinkelement.rs @@ -198,7 +198,7 @@ impl HTMLLinkElement { // TODO: #8085 - Don't load external stylesheets if the node's mq doesn't match. let doc = window.Document(); - let script_chan = window.networking_thread_source(); + let script_chan = window.networking_task_source(); let elem = Trusted::new(self, script_chan.clone()); let context = Arc::new(Mutex::new(StylesheetContext { |