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

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

Issue 2523633003: [Devtools] Prepare network log view for grouping support (Closed)
Patch Set: Merge branch 'master' into NETWORK_GROUP_SUPPORT_1 Created 4 years, 1 month 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/NetworkLogViewColumns.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
index ac8d6ca60b0f7b640e3a116e44c174adc69833ac..c40621add20988540c5d1dfca965de13c2e8277a 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
@@ -158,7 +158,7 @@ Network.NetworkLogViewColumns = class {
if (!logEntry)
return;
var contextMenu = new UI.ContextMenu(event);
- this._networkLogView.handleContextMenuForRequest(contextMenu, logEntry.request());
+ this._networkLogView.handleContextMenuForLogEntry(contextMenu, logEntry);
contextMenu.show();
}
}

Powered by Google App Engine
This is Rietveld 408576698