mirror of
https://github.com/servo/servo.git
synced 2025-07-28 09:40:33 +01:00
Support responseCookies, responseContent, responseHeaders, requestCookies, getResponseHeaders,
getResponseContent, getRequestPostData, getRequestCookies, getResponseCookies, getEventTimings and getSecurityInfo message for network devtools Fixing Indentation
This commit is contained in:
parent
552df7e79e
commit
f889b1ccd7
5 changed files with 405 additions and 27 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue