diff options
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 4a197e759ff..3b5a47a3ef7 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -124,6 +124,8 @@ pub enum LayoutControlMsg { /// Requests the current load state of Web fonts. `true` is returned if fonts are still loading /// 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), } /// can be passed to `LoadUrl` to load a page with GET/POST |