| 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()
|
|
|