diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2017-05-26 19:13:39 +0200 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2017-07-20 15:41:21 +0200 |
commit | 892b30edca806f5b96a7f7d2c65809939bc3344a (patch) | |
tree | 0489777aaab3393bd45d1a0762137a6284df0095 /components/script_layout_interface/lib.rs | |
parent | 20a3b0236d20e621591e751646758e833526084b (diff) | |
download | servo-892b30edca806f5b96a7f7d2c65809939bc3344a.tar.gz servo-892b30edca806f5b96a7f7d2c65809939bc3344a.zip |
Implement basic Time To First Paint and First Contentful Paint PWMs
Diffstat (limited to 'components/script_layout_interface/lib.rs')
-rw-r--r-- | components/script_layout_interface/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs index 210bb1a5c11..e3e956096bb 100644 --- a/components/script_layout_interface/lib.rs +++ b/components/script_layout_interface/lib.rs @@ -24,6 +24,7 @@ extern crate ipc_channel; extern crate libc; #[macro_use] extern crate log; +extern crate metrics; extern crate msg; extern crate net_traits; extern crate profile_traits; |