Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Unified Diff: webkit/glue/devtools/js/net_agent.js

Issue 56149: DevTools: add support for main resource load tracking. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/devtools/js/inspector_controller_impl.js ('k') | webkit/glue/devtools/net_agent_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/js/net_agent.js
===================================================================
--- webkit/glue/devtools/js/net_agent.js (revision 12953)
+++ webkit/glue/devtools/js/net_agent.js (working copy)
@@ -27,6 +27,15 @@
/**
+ * Resets dom agent to its initial state.
+ */
+devtools.NetAgent.prototype.reset = function() {
+ this.resources_ = {};
+ this.id_for_url_ = {};
+};
+
+
+/**
* Returns resource object for given identifier.
* @param {number} identifier Identifier to get resource for.
* @return {WebInspector.Resouce} Resulting resource.
@@ -63,6 +72,12 @@
* {@inheritDoc}.
*/
devtools.NetAgent.prototype.willSendRequest = function(identifier, request) {
+ // Resource object is already created.
+ var resource = this.resources_[identifier];
+ if (resource) {
+ return;
+ }
+
var mainResource = false;
var cached = false;
var resource = new WebInspector.Resource(request.requestHeaders,
@@ -84,6 +99,7 @@
if (!resource) {
return;
}
+
resource.expectedContentLength = response.expectedContentLength;
resource.responseStatusCode = response.responseStatusCode;
resource.mimeType = response.mimeType;
@@ -108,6 +124,11 @@
* {@inheritDoc}.
*/
devtools.NetAgent.prototype.didFinishLoading = function(identifier, value) {
+ // When loading main resource we are only getting the didFinishLoading
+ // that is happening after the reset. Replay previous commands here.
+ this.willSendRequest(identifier, value);
+ this.didReceiveResponse(identifier, value);
+
var resource = this.resources_[identifier];
if (!resource) {
return;
« no previous file with comments | « webkit/glue/devtools/js/inspector_controller_impl.js ('k') | webkit/glue/devtools/net_agent_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698