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/htmlaudioelement.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/htmlaudioelement.rs')
-rw-r--r-- | components/script/dom/htmlaudioelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlaudioelement.rs b/components/script/dom/htmlaudioelement.rs index e636df1da39..ef9fa230f5f 100644 --- a/components/script/dom/htmlaudioelement.rs +++ b/components/script/dom/htmlaudioelement.rs @@ -6,7 +6,7 @@ use dom_struct::dom_struct; use html5ever::{local_name, namespace_url, ns, LocalName, Prefix, QualName}; use js::rust::HandleObject; -use crate::dom::bindings::codegen::Bindings::ElementBinding::ElementBinding::ElementMethods; +use crate::dom::bindings::codegen::Bindings::ElementBinding::Element_Binding::ElementMethods; use crate::dom::bindings::codegen::Bindings::WindowBinding::WindowMethods; use crate::dom::bindings::error::Fallible; use crate::dom::bindings::inheritance::Castable; |