diff options
author | Kamil Muszyński <muszynski.kamil@gmail.com> | 2016-02-17 21:25:12 +0100 |
---|---|---|
committer | Kamil Muszyński <muszynski.kamil@gmail.com> | 2016-02-17 21:25:12 +0100 |
commit | c6dfd7e2fab84fc7d5cb201d855dc6409f985684 (patch) | |
tree | 773d2b16d34f7f525d471ddd0edf8a502e42e44b /components/script/dom/storage.rs | |
parent | 61f09cce4e7c1681fd1f7fbefada596316f06809 (diff) | |
download | servo-c6dfd7e2fab84fc7d5cb201d855dc6409f985684.tar.gz servo-c6dfd7e2fab84fc7d5cb201d855dc6409f985684.zip |
Issue #9561 continued - renamed *_thread_source to *_task_source in global.rs and related files
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(); |