mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Rename MutNullableJS<T> to MutNullableDom<T>
This commit is contained in:
parent
d29335040d
commit
c52fd0a780
63 changed files with 232 additions and 232 deletions
|
@ -8,7 +8,7 @@ use dom::bindings::codegen::Bindings::StorageEventBinding::StorageEventMethods;
|
|||
use dom::bindings::error::Fallible;
|
||||
use dom::bindings::inheritance::Castable;
|
||||
use dom::bindings::reflector::reflect_dom_object;
|
||||
use dom::bindings::root::{MutNullableJS, Root, RootedReference};
|
||||
use dom::bindings::root::{MutNullableDom, Root, RootedReference};
|
||||
use dom::bindings::str::DOMString;
|
||||
use dom::event::{Event, EventBubbles, EventCancelable};
|
||||
use dom::storage::Storage;
|
||||
|
@ -23,7 +23,7 @@ pub struct StorageEvent {
|
|||
old_value: Option<DOMString>,
|
||||
new_value: Option<DOMString>,
|
||||
url: DOMString,
|
||||
storage_area: MutNullableJS<Storage>
|
||||
storage_area: MutNullableDom<Storage>
|
||||
}
|
||||
|
||||
|
||||
|
@ -39,7 +39,7 @@ impl StorageEvent {
|
|||
old_value: old_value,
|
||||
new_value: new_value,
|
||||
url: url,
|
||||
storage_area: MutNullableJS::new(storage_area)
|
||||
storage_area: MutNullableDom::new(storage_area)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue