use dom_struct::dom_struct;
use script_bindings::codegen::GenericBindings::GeolocationPositionBinding::GeolocationPositionMethods;
use script_bindings::reflector::{Reflector, reflect_dom_object};
use script_bindings::root::{Dom, DomRoot};
use script_bindings::script_runtime::CanGc;
use crate::dom::bindings::codegen::DomTypeHolder::DomTypeHolder;
use crate::dom::geolocationcoordinates::GeolocationCoordinates;
use crate::dom::globalscope::GlobalScope;
#[dom_struct]
pub struct GeolocationPosition {
reflector_: Reflector,
coords: Dom<GeolocationCoordinates>,
timestamp: u64,
}
impl GeolocationPosition {
fn new_inherited(coords: &GeolocationCoordinates, timestamp: u64) -> Self {
GeolocationPosition {
reflector_: Reflector::new(),
coords: Dom::from_ref(coords),
timestamp,
}
}
#[expect(unused)]
pub(crate) fn new(
global: &GlobalScope,
coords: &GeolocationCoordinates,
timestamp: u64,
can_gc: CanGc,
) -> DomRoot<Self> {
reflect_dom_object(
Box::new(Self::new_inherited(coords, timestamp)),
global,
can_gc,
)
}
}
impl GeolocationPositionMethods<DomTypeHolder> for GeolocationPosition {
fn Coords(&self) -> DomRoot<GeolocationCoordinates> {
DomRoot::from_ref(&*self.coords.clone())
}
fn Timestamp(&self) -> u64 {
self.timestamp
}
}