diff options
Diffstat (limited to 'components/devtools_traits/lib.rs')
-rw-r--r-- | components/devtools_traits/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/devtools_traits/lib.rs b/components/devtools_traits/lib.rs index 9b43581b72a..b914e8dfda2 100644 --- a/components/devtools_traits/lib.rs +++ b/components/devtools_traits/lib.rs @@ -34,6 +34,7 @@ use msg::constellation_msg::PipelineId; use rustc_serialize::{Decodable, Decoder}; use std::net::TcpStream; use time::Duration; +use time::Tm; use url::Url; // Information would be attached to NewGlobal to be received and show in devtools. @@ -264,6 +265,7 @@ pub struct HttpRequest { pub headers: Headers, pub body: Option<Vec<u8>>, pub pipeline_id: PipelineId, + pub startedDateTime: Tm } #[derive(Debug, PartialEq)] |