mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
changed f64 to u64 for navigation start timing until it had to be float
This commit is contained in:
parent
b23131abf1
commit
0a09ee5cd8
13 changed files with 66 additions and 66 deletions
|
@ -122,7 +122,7 @@ pub enum LayoutControlMsg {
|
|||
/// and `false` is returned if all fonts have loaded.
|
||||
GetWebFontLoadState(IpcSender<bool>),
|
||||
/// Send the paint time for a specific epoch to the layout thread.
|
||||
PaintMetric(Epoch, f64),
|
||||
PaintMetric(Epoch, u64),
|
||||
}
|
||||
|
||||
/// can be passed to `LoadUrl` to load a page with GET/POST
|
||||
|
@ -324,7 +324,7 @@ pub enum ConstellationControlMsg {
|
|||
/// Notifies the script thread of WebVR events.
|
||||
WebVREvents(PipelineId, Vec<WebVREvent>),
|
||||
/// Notifies the script thread about a new recorded paint metric.
|
||||
PaintMetric(PipelineId, ProgressiveWebMetricType, f64),
|
||||
PaintMetric(PipelineId, ProgressiveWebMetricType, u64),
|
||||
}
|
||||
|
||||
impl fmt::Debug for ConstellationControlMsg {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue