pub trait WebsiteDataAccessPermissionRequestExt: 'static {
    fn current_domain(&self) -> Option<GString>;
    fn requesting_domain(&self) -> Option<GString>;
}
Available on crate feature v2_30 only.
Expand description

Required Methods

Get the current domain being browsed.

Returns

the current domain name

Get the domain requesting permission to access its cookies while browsing the current domain.

Returns

the requesting domain name

Implementors