| Index: third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| index 16ae06915694389bb3173a5bac61c8ebde1acfb5..92f37ac404d562490d050f294aa27967b5cec9a4 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/ResourceTreeModel.js
|
| @@ -55,6 +55,7 @@ WebInspector.ResourceTreeModel = function(target, networkManager, securityOrigin
|
|
|
| this._pendingReloadOptions = null;
|
| this._reloadSuspensionCount = 0;
|
| + this._fireExecutionContextOrderChanged = target.runtimeModel.fireExecutionContextOrderChanged.bind(target.runtimeModel);
|
|
|
| target.runtimeModel.setExecutionContextComparator(this._executionContextComparator.bind(this));
|
| }
|
| @@ -132,6 +133,7 @@ WebInspector.ResourceTreeModel.prototype = {
|
| this.target().setInspectedURL(mainFramePayload.frame.url);
|
| }
|
| this._cachedResourcesProcessed = true;
|
| + this._fireExecutionContextOrderChanged();
|
| this.dispatchEventToListeners(WebInspector.ResourceTreeModel.EventTypes.CachedResourcesLoaded);
|
| },
|
|
|
|
|