Home | History | Annotate | Download | only in sdk

Lines Matching defs:ExecutionContext

45      * @type {!Object.<number, !WebInspector.ExecutionContext>}
58 * @return {!Array.<!WebInspector.ExecutionContext>}
70 var executionContext = new WebInspector.ExecutionContext(this.target(), context.id, context.name, context.origin, context.isPageContext, context.frameId);
71 this._executionContextById[executionContext.id] = executionContext;
72 this.dispatchEventToListeners(WebInspector.RuntimeModel.Events.ExecutionContextCreated, executionContext);
80 var executionContext = this._executionContextById[executionContextId];
82 this.dispatchEventToListeners(WebInspector.RuntimeModel.Events.ExecutionContextDestroyed, executionContext);
173 WebInspector.ExecutionContext = function(target, id, name, origin, isPageContext, frameId)
185 * @param {!WebInspector.ExecutionContext} a
186 * @param {!WebInspector.ExecutionContext} b
189 WebInspector.ExecutionContext.comparator = function(a, b)
199 WebInspector.ExecutionContext.prototype = {
212 //FIXME: It will be moved to separate ExecutionContext
224 * @this {WebInspector.ExecutionContext}
278 * @this {WebInspector.ExecutionContext}
290 * @this {WebInspector.ExecutionContext}
326 * @this {WebInspector.ExecutionContext}
337 * @this {WebInspector.ExecutionContext}