aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/timeranges.rs
diff options
context:
space:
mode:
authorYUAN LYU <lyuyuan92@gmail.com>2020-03-20 22:14:18 -0400
committerYUAN LYU <lyuyuan92@gmail.com>2020-03-20 22:16:56 -0400
commit3ea6d87bcc37167464e856949a4b9b77d0e9318a (patch)
tree4b76a0ddc00f342416bca90bd4ec2a1e4e213837 /components/script/dom/timeranges.rs
parentca29399babcf05048ce5e222efede5f655e0a760 (diff)
downloadservo-3ea6d87bcc37167464e856949a4b9b77d0e9318a.tar.gz
servo-3ea6d87bcc37167464e856949a4b9b77d0e9318a.zip
Add trait DomObjectWrap to provide WRAP function
Diffstat (limited to 'components/script/dom/timeranges.rs')
-rw-r--r--components/script/dom/timeranges.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/components/script/dom/timeranges.rs b/components/script/dom/timeranges.rs
index 7b4d1978a60..7a60210b0e0 100644
--- a/components/script/dom/timeranges.rs
+++ b/components/script/dom/timeranges.rs
@@ -2,7 +2,6 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
-use crate::dom::bindings::codegen::Bindings::TimeRangesBinding;
use crate::dom::bindings::codegen::Bindings::TimeRangesBinding::TimeRangesMethods;
use crate::dom::bindings::error::{Error, Fallible};
use crate::dom::bindings::num::Finite;
@@ -138,11 +137,7 @@ impl TimeRanges {
}
pub fn new(window: &Window, ranges: TimeRangesContainer) -> DomRoot<TimeRanges> {
- reflect_dom_object(
- Box::new(TimeRanges::new_inherited(ranges)),
- window,
- TimeRangesBinding::Wrap,
- )
+ reflect_dom_object(Box::new(TimeRanges::new_inherited(ranges)), window)
}
}