aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools_traits/lib.rs
diff options
context:
space:
mode:
authorAbhishek Kumar <akumar21@ncsu.edu>2015-12-01 15:50:43 -0500
committerAbhishek Kumar <akumar21@ncsu.edu>2015-12-21 10:28:40 -0500
commitf889b1ccd7849e594d66a27e5c0fd8095e7242ec (patch)
tree95668f8e57602487433baedc87fc22c9fbb850d8 /components/devtools_traits/lib.rs
parent552df7e79e283621b93028501a3362d698916f6b (diff)
downloadservo-f889b1ccd7849e594d66a27e5c0fd8095e7242ec.tar.gz
servo-f889b1ccd7849e594d66a27e5c0fd8095e7242ec.zip
Support responseCookies, responseContent, responseHeaders, requestCookies, getResponseHeaders,
getResponseContent, getRequestPostData, getRequestCookies, getResponseCookies, getEventTimings and getSecurityInfo message for network devtools Fixing Indentation
Diffstat (limited to 'components/devtools_traits/lib.rs')
-rw-r--r--components/devtools_traits/lib.rs2
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)]