Skip to content

Commit

Permalink
added time to interactive metrics, refactored metrics to use traits
Browse files Browse the repository at this point in the history
changed task macro to take pipeline info
  • Loading branch information
avadacatavra committed Oct 24, 2017
1 parent 347176d commit 2ffbe53
Show file tree
Hide file tree
Showing 26 changed files with 727 additions and 135 deletions.
5 changes: 5 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/layout_thread/lib.rs
Expand Up @@ -86,7 +86,7 @@ use layout::wrapper::LayoutNodeLayoutData;
use layout_traits::LayoutThreadFactory;
use libc::c_void;
use malloc_size_of::{MallocSizeOf, MallocSizeOfOps};
use metrics::{PaintTimeMetrics, ProfilerMetadataFactory};
use metrics::{PaintTimeMetrics, ProfilerMetadataFactory, ProgressiveWebMetric};
use msg::constellation_msg::PipelineId;
use msg::constellation_msg::TopLevelBrowsingContextId;
use net_traits::image_cache::{ImageCache, UsePlaceholder};
Expand Down
4 changes: 4 additions & 0 deletions components/metrics/Cargo.toml
Expand Up @@ -14,7 +14,11 @@ gfx = {path = "../gfx"}
gfx_traits = {path = "../gfx_traits"}
ipc-channel = "0.9"
log = "0.3.5"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
msg = {path = "../msg"}
lazy_static = "0.2"
profile_traits = {path = "../profile_traits"}
script_traits = {path = "../script_traits"}
servo_config = {path = "../config"}
time = "0.1"

0 comments on commit 2ffbe53

Please sign in to comment.