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

Unified Diff: webkit/glue/devtools/js/devtools.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 | « no previous file | webkit/glue/devtools/js/inspector_controller_impl.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/js/devtools.js
===================================================================
--- webkit/glue/devtools/js/devtools.js (revision 12953)
+++ webkit/glue/devtools/js/devtools.js (working copy)
@@ -33,6 +33,7 @@
*/
devtools.ToolsAgent.prototype.reset = function() {
this.domAgent_.reset();
+ this.netAgent_.reset();
this.domAgent_.getDocumentElementAsync();
};
@@ -114,11 +115,15 @@
/**
+ * @param {string} url Url frame navigated to.
+ * @param {bool} topLevel True iff top level navigation occurred.
* @see tools_agent.h
*/
devtools.ToolsAgent.prototype.frameNavigate = function(url, topLevel) {
- this.reset();
- WebInspector.reset();
+ if (topLevel) {
+ this.reset();
+ WebInspector.reset();
+ }
};
« no previous file with comments | « no previous file | webkit/glue/devtools/js/inspector_controller_impl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698