| Index: third_party/WebKit/Source/devtools/front_end/resources/ApplicationPanelSidebar.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/resources/ApplicationPanelSidebar.js b/third_party/WebKit/Source/devtools/front_end/resources/ApplicationPanelSidebar.js
|
| index 2c738b0a25d95bfe12ef4fef0148dafb8aa51d7d..c68aa70b85097948c17aa096a45d0cdf663e53aa 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/resources/ApplicationPanelSidebar.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/resources/ApplicationPanelSidebar.js
|
| @@ -1511,7 +1511,7 @@ Resources.CookieTreeElement = class extends Resources.BaseStorageTreeElement {
|
| */
|
| constructor(storagePanel, frame, cookieDomain) {
|
| super(storagePanel, cookieDomain ? cookieDomain : Common.UIString('Local Files'), false);
|
| - this._target = frame.target();
|
| + this._target = frame.resourceTreeModel().target();
|
| this._cookieDomain = cookieDomain;
|
| var icon = UI.Icon.create('mediumicon-cookie', 'resource-tree-item');
|
| this.setLeadingIcons([icon]);
|
|
|