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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js

Issue 2436953003: [Devtools] Highlight navigation request in network timeline exp (Closed)
Patch Set: [Devtools] Highlight navigation request in network timeline exp Created 4 years, 2 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
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
index 16025969a1a933ed3a79c6ceb09ccfbcc1bb57fd..4af1f818ee1d7e2c5d1d21640ab1c5b48fb81564 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
@@ -70,6 +70,14 @@ WebInspector.NetworkDataGridNode.prototype = {
return this._request;
},
+ /**
+ * @return {boolean}
+ */
+ isNavigationRequest: function()
+ {
+ return this._isNavigationRequest;
+ },
+
markAsNavigationRequest: function()
{
this._isNavigationRequest = true;

Powered by Google App Engine
This is Rietveld 408576698