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/gpusupportedlimits.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/gpusupportedlimits.rs')
-rw-r--r-- | components/script/dom/gpusupportedlimits.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/gpusupportedlimits.rs b/components/script/dom/gpusupportedlimits.rs index 9a947bf0131..70d361594d2 100644 --- a/components/script/dom/gpusupportedlimits.rs +++ b/components/script/dom/gpusupportedlimits.rs @@ -4,9 +4,9 @@ use dom_struct::dom_struct; use webgpu::wgt::Limits; -use GPUSupportedLimitsBinding::GPUSupportedLimitsMethods; +use GPUSupportedLimits_Binding::GPUSupportedLimitsMethods; -use super::bindings::codegen::Bindings::GPUSupportedLimitsBinding::GPUSupportedLimitsBinding; +use super::bindings::codegen::Bindings::GPUSupportedLimitsBinding::GPUSupportedLimits_Binding; use super::bindings::reflector::reflect_dom_object; use super::bindings::root::DomRoot; use crate::dom::bindings::reflector::Reflector; |