mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
script: Move debugger interfaces into debugger/ (#43279)
Part of #38901 Testing: It compiles Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com>
This commit is contained in:
committed by
GitHub
parent
d952864be0
commit
058759bf06
@@ -0,0 +1,59 @@
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use std::fmt::Debug;
|
||||
|
||||
use dom_struct::dom_struct;
|
||||
use script_bindings::str::DOMString;
|
||||
|
||||
use crate::dom::bindings::codegen::Bindings::DebuggerGetEnvironmentEventBinding::DebuggerGetEnvironmentEventMethods;
|
||||
use crate::dom::bindings::codegen::Bindings::EventBinding::Event_Binding::EventMethods;
|
||||
use crate::dom::bindings::reflector::reflect_dom_object;
|
||||
use crate::dom::bindings::root::DomRoot;
|
||||
use crate::dom::event::Event;
|
||||
use crate::dom::types::GlobalScope;
|
||||
use crate::script_runtime::CanGc;
|
||||
|
||||
#[dom_struct]
|
||||
/// Event for Rust → JS calls in [`crate::dom::debugger::DebuggerGlobalScope`].
|
||||
pub(crate) struct DebuggerGetEnvironmentEvent {
|
||||
event: Event,
|
||||
frame_actor_id: DOMString,
|
||||
}
|
||||
|
||||
impl DebuggerGetEnvironmentEvent {
|
||||
pub(crate) fn new(
|
||||
debugger_global: &GlobalScope,
|
||||
frame_actor_id: DOMString,
|
||||
can_gc: CanGc,
|
||||
) -> DomRoot<Self> {
|
||||
let result = Box::new(Self {
|
||||
event: Event::new_inherited(),
|
||||
frame_actor_id,
|
||||
});
|
||||
let result = reflect_dom_object(result, debugger_global, can_gc);
|
||||
result
|
||||
.event
|
||||
.init_event("getEnvironment".into(), false, false);
|
||||
|
||||
result
|
||||
}
|
||||
}
|
||||
|
||||
impl DebuggerGetEnvironmentEventMethods<crate::DomTypeHolder> for DebuggerGetEnvironmentEvent {
|
||||
// check-tidy: no specs after this line
|
||||
fn FrameActorId(&self) -> DOMString {
|
||||
self.frame_actor_id.clone()
|
||||
}
|
||||
|
||||
fn IsTrusted(&self) -> bool {
|
||||
self.event.IsTrusted()
|
||||
}
|
||||
}
|
||||
|
||||
impl Debug for DebuggerGetEnvironmentEvent {
|
||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||
f.debug_struct("DebuggerGetEnvironmentEvent").finish()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user