| Index: third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| index e72872cf2d12823338f312a5ea9b54f49aa8a29d..51292fb948ea6522f66e0aad41934a33f9e05622 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| @@ -169,11 +169,10 @@ UI.InspectorView = class extends UI.VBox {
|
|
|
| /**
|
| * @param {string} panelName
|
| - * @param {string} iconType
|
| - * @param {string=} iconTooltip
|
| + * @param {?UI.Icon} icon
|
| */
|
| - setPanelIcon(panelName, iconType, iconTooltip) {
|
| - this._tabbedPane.setTabIcon(panelName, iconType, iconTooltip);
|
| + setPanelIcon(panelName, icon) {
|
| + this._tabbedPane.setTabIcon(panelName, icon);
|
| }
|
|
|
| /**
|
|
|