mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
deps: Upgrade to webrender@0.66
(#35325)
In addition to some small API changes, this downstream version of
WebRender no longer depends on a very old version of time. This is the
last step toward removing the dependency on `time0.1`.
The review for this commit should also include: 9f552bebab
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
4721f47190
commit
643885e6f1
32 changed files with 72 additions and 76 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
use base::cross_process_instant::CrossProcessInstant;
|
||||
use dom_struct::dom_struct;
|
||||
use time_03::Duration;
|
||||
use time::Duration;
|
||||
|
||||
use super::performance::ToDOMHighResTimeStamp;
|
||||
use crate::dom::bindings::codegen::Bindings::PerformanceBinding::DOMHighResTimeStamp;
|
||||
|
@ -22,7 +22,7 @@ pub(crate) struct PerformanceEntry {
|
|||
entry_type: DOMString,
|
||||
#[no_trace]
|
||||
start_time: Option<CrossProcessInstant>,
|
||||
/// The duration of this [`PerformanceEntry`]. This is a [`time_03::Duration`],
|
||||
/// The duration of this [`PerformanceEntry`]. This is a [`time::Duration`],
|
||||
/// because it can be negative and `std::time::Duration` cannot be.
|
||||
#[no_trace]
|
||||
#[ignore_malloc_size_of = "No MallocSizeOf support for `time` crate"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue