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/mutationobserver.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/mutationobserver.rs')
-rw-r--r-- | components/script/dom/mutationobserver.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/mutationobserver.rs b/components/script/dom/mutationobserver.rs index f52a80a6776..cc0c470164c 100644 --- a/components/script/dom/mutationobserver.rs +++ b/components/script/dom/mutationobserver.rs @@ -10,7 +10,7 @@ use js::rust::HandleObject; use crate::dom::bindings::callback::ExceptionHandling; use crate::dom::bindings::cell::DomRefCell; -use crate::dom::bindings::codegen::Bindings::MutationObserverBinding::MutationObserverBinding::MutationObserverMethods; +use crate::dom::bindings::codegen::Bindings::MutationObserverBinding::MutationObserver_Binding::MutationObserverMethods; use crate::dom::bindings::codegen::Bindings::MutationObserverBinding::{ MutationCallback, MutationObserverInit, }; |