Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js |
| index e69fae53dfc53cca11434bcf996cdf5c704522af..a4ea50e05089663ac239e43b763beb34da7afb5f 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/elements/ElementsSidebarPane.js |
| @@ -88,7 +88,7 @@ WebInspector.ElementsSidebarPane.prototype = { |
| if (target) { |
| this._cssModel = WebInspector.CSSModel.fromTarget(target); |
| domModel = WebInspector.DOMModel.fromTarget(target); |
| - resourceTreeModel = target.resourceTreeModel; |
| + resourceTreeModel = WebInspector.ResourceTreeModel.fromTarget(target); |
| } |
| if (this._cssModel && domModel && resourceTreeModel) { |
|
dgozman
2016/07/14 16:29:28
We should split "&& resourceTreeModel" out. This p
eostroukhov-old
2016/07/20 23:46:15
This code have been removed.
|