aboutsummaryrefslogtreecommitdiffstats
path: root/components/metrics
diff options
context:
space:
mode:
authorPyfisch <pyfisch@gmail.com>2018-11-06 20:38:02 +0100
committerPyfisch <pyfisch@gmail.com>2018-11-06 22:35:07 +0100
commit9e92eb205a2a12fe0be883e42cb7f82deebc9031 (patch)
tree48c1660b942d5dfffb289dc5d4110604caca54fb /components/metrics
parent4a947dd7195c3ece1e4996a6bdf7c300bf6ec655 (diff)
downloadservo-9e92eb205a2a12fe0be883e42cb7f82deebc9031.tar.gz
servo-9e92eb205a2a12fe0be883e42cb7f82deebc9031.zip
Reorder imports
Diffstat (limited to 'components/metrics')
-rw-r--r--components/metrics/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/metrics/lib.rs b/components/metrics/lib.rs
index f0411cb7627..f83a80b9302 100644
--- a/components/metrics/lib.rs
+++ b/components/metrics/lib.rs
@@ -16,11 +16,11 @@ extern crate servo_config;
extern crate servo_url;
extern crate time;
-use gfx_traits::{Epoch, DisplayList};
+use gfx_traits::{DisplayList, Epoch};
use ipc_channel::ipc::IpcSender;
use msg::constellation_msg::PipelineId;
-use profile_traits::time::{ProfilerChan, ProfilerCategory, send_profile_data};
use profile_traits::time::TimerMetadata;
+use profile_traits::time::{send_profile_data, ProfilerCategory, ProfilerChan};
use script_traits::{ConstellationControlMsg, LayoutMsg, ProgressiveWebMetricType};
use servo_config::opts;
use servo_url::ServoUrl;