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

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

Issue 2653363002: [Devtools] Added typing to network in prep for removing unrestricted (Closed)
Patch Set: changes Created 3 years, 11 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 a6c502ff98e1b54b6a0e80f00c5d2fca4b54ad96..e492e2fbb9b5a1172b38db1d9b92cc3e494884f4 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
@@ -183,6 +183,12 @@ Network.NetworkRequestNode = class extends Network.NetworkNode {
*/
constructor(parentView, request) {
super(parentView);
+ /** @type {?Element} */
+ this._nameCell = null;
+ /** @type {?Element} */
+ this._initiatorCell = null;
+ /** @type {?Element} */
+ this._linkifiedInitiatorAnchor = null;
this._request = request;
this._isNavigationRequest = false;
this.selectable = true;

Powered by Google App Engine
This is Rietveld 408576698