diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-18 04:59:32 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-18 04:59:32 +0530 |
commit | 63dc161b773775c6755a604ec04b81c0bc479bf3 (patch) | |
tree | 3c68d0edf0012c441d21d9fd5ebb637eb08887ff /components/script/dom/storage.rs | |
parent | bc034845b7e543e4e71fa21d6bf99e9f10ddb6c5 (diff) | |
parent | c6dfd7e2fab84fc7d5cb201d855dc6409f985684 (diff) | |
download | servo-63dc161b773775c6755a604ec04b81c0bc479bf3.tar.gz servo-63dc161b773775c6755a604ec04b81c0bc479bf3.zip |
Auto merge of #9683 - kmuszyn:9561-more-thread-source-renamings, r=jdm
Issue #9561 continued - renamed *_thread_source to *_task_source
components/script/dom/bindings/global.rs modified -> all *_thread_source occurrences renamed to *_task_source to comply with spec
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9683)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/storage.rs')
-rw-r--r-- | components/script/dom/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/storage.rs b/components/script/dom/storage.rs index 39664098b64..c5d79fe7baf 100644 --- a/components/script/dom/storage.rs +++ b/components/script/dom/storage.rs @@ -154,7 +154,7 @@ impl Storage { let global_root = self.global(); let global_ref = global_root.r(); let main_script_chan = global_ref.as_window().main_thread_script_chan(); - let script_chan = global_ref.dom_manipulation_thread_source(); + let script_chan = global_ref.dom_manipulation_task_source(); let trusted_storage = Trusted::new(self, script_chan); main_script_chan.send(MainThreadScriptMsg::MainThreadRunnableMsg( box StorageEventRunnable::new(trusted_storage, key, old_value, new_value))).unwrap(); |