aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/abstractworker.rs
diff options
context:
space:
mode:
authorRahul Sharma <rsconceptx@gmail.com>2016-07-25 14:31:07 +0530
committerRahul Sharma <rsconceptx@gmail.com>2016-07-26 23:16:49 +0530
commit36dbd27ba524d4b74923b61694b6b844ba27b2d3 (patch)
tree1ba9c6fffa31d7df9a3777c7c0c1cd83f1e4f68d /components/script/dom/abstractworker.rs
parent81a1e28da140743818651b7c77c7bfc3b8c54d85 (diff)
downloadservo-36dbd27ba524d4b74923b61694b6b844ba27b2d3.tar.gz
servo-36dbd27ba524d4b74923b61694b6b844ba27b2d3.zip
Make the service worker send custom response
Diffstat (limited to 'components/script/dom/abstractworker.rs')
-rw-r--r--components/script/dom/abstractworker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/abstractworker.rs b/components/script/dom/abstractworker.rs
index 4f2f029800b..28c755d4f03 100644
--- a/components/script/dom/abstractworker.rs
+++ b/components/script/dom/abstractworker.rs
@@ -15,7 +15,7 @@ pub enum WorkerScriptMsg {
/// Common variants associated with the script messages
Common(CommonScriptMsg),
/// Message sent through Worker.postMessage
- DOMMessage(StructuredCloneData),
+ DOMMessage(StructuredCloneData)
}
pub struct SimpleWorkerErrorHandler<T: Reflectable> {