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

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: 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 6e64b55e3d658ddd479ec83835185e7321bb1cda..a169082c31cc5c90ad849be95a46100ac156936e 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
@@ -142,6 +142,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