From fea2ad0fabda22bd0651b2dbf2a603f333c26263 Mon Sep 17 00:00:00 2001 From: krk Date: Wed, 17 Apr 2019 21:38:13 +0200 Subject: [PATCH] Inherit TestBinding from TestBindingProxy. --- components/script/dom/testbindingproxy.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/script/dom/testbindingproxy.rs b/components/script/dom/testbindingproxy.rs index 46134a3393f..3b352acb097 100644 --- a/components/script/dom/testbindingproxy.rs +++ b/components/script/dom/testbindingproxy.rs @@ -5,13 +5,13 @@ // check-tidy: no specs after this line use crate::dom::bindings::codegen::Bindings::TestBindingProxyBinding::TestBindingProxyMethods; -use crate::dom::bindings::reflector::Reflector; use crate::dom::bindings::str::DOMString; +use crate::dom::testbinding::TestBinding; use dom_struct::dom_struct; #[dom_struct] pub struct TestBindingProxy { - reflector_: Reflector, + testbinding_: TestBinding, } impl TestBindingProxyMethods for TestBindingProxy {