| Index: third_party/WebKit/Source/devtools/front_end/resources/ResourcesSection.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ResourcesSection.js b/third_party/WebKit/Source/devtools/front_end/resources/ResourcesSection.js
|
| index 2ffe0362b3565c45d25ea1873b7eeabf146469d9..047cb83789337f3bd39aa42a3f86ecacef7d55fe 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/ResourcesSection.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/ResourcesSection.js
|
| @@ -155,17 +155,18 @@
|
| this._panel.showCategoryView(this.titleAsText());
|
|
|
| this.listItemElement.classList.remove('hovered');
|
| - SDK.OverlayModel.hideDOMNodeHighlight();
|
| + SDK.DOMModel.hideDOMNodeHighlight();
|
| return false;
|
| }
|
|
|
| set hovered(hovered) {
|
| if (hovered) {
|
| this.listItemElement.classList.add('hovered');
|
| - this._frame.resourceTreeModel().domModel().overlayModel().highlightFrame(this._frameId);
|
| + var domModel = this._frame.resourceTreeModel().domModel();
|
| + domModel.highlightFrame(this._frameId);
|
| } else {
|
| this.listItemElement.classList.remove('hovered');
|
| - SDK.OverlayModel.hideDOMNodeHighlight();
|
| + SDK.DOMModel.hideDOMNodeHighlight();
|
| }
|
| }
|
|
|
|
|