aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/mod.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-06-02 06:18:59 -0500
committerbors-servo <lbergstrom+bors@mozilla.com>2016-06-02 06:18:59 -0500
commitcc017fc0b8619726f0c82649f41fdcf5595b19e4 (patch)
treee77fdc04eef71792a28898da24eb564f48432fe5 /components/script/dom/mod.rs
parent196adaff07201deb273077213fa63c460cc11629 (diff)
parent15a2064c0d7b468724b43d1cb6157d506ad19093 (diff)
downloadservo-cc017fc0b8619726f0c82649f41fdcf5595b19e4.tar.gz
servo-cc017fc0b8619726f0c82649f41fdcf5595b19e4.zip
Auto merge of #11114 - creativcoder:nav-sw, r=jdm
implement related service worker interface and register method Fixes #11091 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11114) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/mod.rs')
-rw-r--r--components/script/dom/mod.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/components/script/dom/mod.rs b/components/script/dom/mod.rs
index a5d8e7a707a..ff1a4638998 100644
--- a/components/script/dom/mod.rs
+++ b/components/script/dom/mod.rs
@@ -209,6 +209,8 @@ pub mod types {
include!(concat!(env!("OUT_DIR"), "/InterfaceTypes.rs"));
}
+pub mod abstractworker;
+pub mod abstractworkerglobalscope;
pub mod activation;
pub mod attr;
pub mod beforeunloadevent;
@@ -231,6 +233,7 @@ pub mod canvasgradient;
pub mod canvaspattern;
pub mod canvasrenderingcontext2d;
pub mod characterdata;
+pub mod client;
pub mod closeevent;
pub mod comment;
pub mod console;
@@ -363,6 +366,10 @@ pub mod progressevent;
pub mod radionodelist;
pub mod range;
pub mod screen;
+pub mod serviceworker;
+pub mod serviceworkercontainer;
+pub mod serviceworkerglobalscope;
+pub mod serviceworkerregistration;
pub mod servohtmlparser;
pub mod servoxmlparser;
pub mod storage;