aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_thread.rs
diff options
context:
space:
mode:
authorKeith Yeung <kungfukeith11@gmail.com>2016-04-25 19:46:21 -0400
committerKeith Yeung <kungfukeith11@gmail.com>2016-05-04 21:01:26 -0400
commit12a96f71945dbd27336469f69f8e679a2b54b40b (patch)
treecafeaadccad16a10070088175fcadb213af72ac9 /components/script/script_thread.rs
parentce302c78c10e54ca592a3af0b4e728cb6b0073ff (diff)
downloadservo-12a96f71945dbd27336469f69f8e679a2b54b40b.tar.gz
servo-12a96f71945dbd27336469f69f8e679a2b54b40b.zip
Rename DOM manipulation messages to tasks
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r--components/script/script_thread.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs
index a46c1a28b18..5891bd35c7c 100644
--- a/components/script/script_thread.rs
+++ b/components/script/script_thread.rs
@@ -932,8 +932,8 @@ impl ScriptThread {
LiveDOMReferences::cleanup(addr),
MainThreadScriptMsg::Common(CommonScriptMsg::CollectReports(reports_chan)) =>
self.collect_reports(reports_chan),
- MainThreadScriptMsg::DOMManipulation(msg) =>
- msg.handle_msg(self),
+ MainThreadScriptMsg::DOMManipulation(task) =>
+ task.handle_task(self),
}
}