diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-09-30 02:52:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 00:52:04 +0000 |
commit | ebd41d41017ee9727eb8417a0a01237b75f3e9c4 (patch) | |
tree | 89cf615b370937610b69d40e2eba479f3f53ede9 /components/script/dom/xrsubimage.rs | |
parent | 67f2f98a93b02b8254fa9de0dfd455fe82b810bf (diff) | |
download | servo-ebd41d41017ee9727eb8417a0a01237b75f3e9c4.tar.gz servo-ebd41d41017ee9727eb8417a0a01237b75f3e9c4.zip |
Use Foo_Binding instead of FooBinding for namespace modules (#30447)
* Update Codegen.py to emit Foo_Binding instead of FooBinding
* s/FooBinding/Foo_Binding/g
Diffstat (limited to 'components/script/dom/xrsubimage.rs')
-rw-r--r-- | components/script/dom/xrsubimage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/xrsubimage.rs b/components/script/dom/xrsubimage.rs index a5265a3aa76..eb084db630a 100644 --- a/components/script/dom/xrsubimage.rs +++ b/components/script/dom/xrsubimage.rs @@ -4,7 +4,7 @@ use dom_struct::dom_struct; -use crate::dom::bindings::codegen::Bindings::XRSubImageBinding::XRSubImageBinding::XRSubImageMethods; +use crate::dom::bindings::codegen::Bindings::XRSubImageBinding::XRSubImage_Binding::XRSubImageMethods; use crate::dom::bindings::reflector::Reflector; use crate::dom::bindings::root::{Dom, DomRoot}; use crate::dom::xrviewport::XRViewport; |