| Index: third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
|
| index 86b44cd03d6fefee530ef125c3e41e63553f0041..abe4f8af6f3837c9990e767d6380da1d51c7d7d1 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/RuntimeModel.js
|
| @@ -54,7 +54,8 @@ WebInspector.RuntimeModel = function(target)
|
| WebInspector.RuntimeModel.Events = {
|
| ExecutionContextCreated: "ExecutionContextCreated",
|
| ExecutionContextDestroyed: "ExecutionContextDestroyed",
|
| - ExecutionContextChanged: "ExecutionContextChanged"
|
| + ExecutionContextChanged: "ExecutionContextChanged",
|
| + ExecutionContextOrderChanged: "ExecutionContextOrderChanged"
|
| }
|
|
|
| WebInspector.RuntimeModel._privateScript = "private script";
|
| @@ -133,6 +134,11 @@ WebInspector.RuntimeModel.prototype = {
|
| this.dispatchEventToListeners(WebInspector.RuntimeModel.Events.ExecutionContextDestroyed, executionContext);
|
| },
|
|
|
| + fireExecutionContextOrderChanged: function()
|
| + {
|
| + this.dispatchEventToListeners(WebInspector.RuntimeModel.Events.ExecutionContextOrderChanged, this);
|
| + },
|
| +
|
| _executionContextsCleared: function()
|
| {
|
| var debuggerModel = WebInspector.DebuggerModel.fromTarget(this.target());
|
|
|