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

Unified Diff: Source/devtools/front_end/network/NetworkPanel.js

Issue 1327593005: Link to the mixed content filter from security panel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 3 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: Source/devtools/front_end/network/NetworkPanel.js
diff --git a/Source/devtools/front_end/network/NetworkPanel.js b/Source/devtools/front_end/network/NetworkPanel.js
index c3b04e7339cc88b11478990d2ea3c227c7fc24e3..1fb6188f40f81acbd17e00ed6e46408ae2a9a2a6 100644
--- a/Source/devtools/front_end/network/NetworkPanel.js
+++ b/Source/devtools/front_end/network/NetworkPanel.js
@@ -639,6 +639,17 @@ WebInspector.NetworkPanel.show = function()
}
/**
+ * @param {!WebInspector.NetworkLogView.FilterType} filterType
+ * @param {string} filterValue
+ */
+WebInspector.NetworkPanel.revealAndFilter = function(filterType, filterValue)
+{
+ var panel = WebInspector.NetworkPanel._instance();
+ panel._networkLogView.setTextFilterValue(filterType, filterValue);
+ WebInspector.inspectorView.setCurrentPanel(panel);
+}
+
+/**
* @return {!WebInspector.NetworkPanel}
*/
WebInspector.NetworkPanel._instance = function()
« no previous file with comments | « Source/devtools/front_end/network/NetworkLogView.js ('k') | Source/devtools/front_end/security/SecurityModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698