Home
last modified time | relevance | path

Searched refs:runtimeModel (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DExecutionContextSelector.js26 …target.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreated, thi…
27 …target.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextDestroyed, t…
35 …target.runtimeModel.removeEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreated, …
36 …target.runtimeModel.removeEventListener(WebInspector.RuntimeModel.Events.ExecutionContextDestroyed…
67 var executionContexts = newTarget.runtimeModel.executionContexts();
104 var executionContexts = targets[i].runtimeModel.executionContexts();
DObjectPropertiesSection.js663 var runtimeModel = this._remoteObject.target().runtimeModel;
665 var remoteObject = runtimeModel.createRemoteObject(scope.object);
672 var remoteObject = runtimeModel.createScopeRemoteObject(scope.object, scopeRef);
DDOMBreakpointsSidebarPane.js133 … var targetNodeObject = details.target().runtimeModel.createRemoteObject(auxData["targetNode"]);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DScopeChainSidebarPane.js123 var runtimeModel = callFrame.target().runtimeModel;
125 …var scopeObject = runtimeModel.createScopeRemoteObject(scope.object, new WebInspector.ScopeRef(i, …
127 var scopeObject = runtimeModel.createRemoteObject(scope.object);
DWatchExpressionsSidebarPane.js109 …WebInspector.ObjectPropertiesSection.call(this, WebInspector.runtimeModel.createRemoteObjectFromPr…
DJavaScriptSourceFrame.js510 …showCallback(selectedCallFrame.target().runtimeModel.createRemoteObject(result), wasThrown, this._…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DTarget.js107 this.runtimeModel = new WebInspector.RuntimeModel(this);
108 if (!WebInspector.runtimeModel)
109 WebInspector.runtimeModel = this.runtimeModel;
DRemoteObject.js345 …var propertyValue = property.value ? this._target.runtimeModel.createRemoteObject(property.value) …
346 …var propertySymbol = property.symbol ? this._target.runtimeModel.createRemoteObject(property.symbo…
352 … remoteProperty.getter = this._target.runtimeModel.createRemoteObject(property.get);
354 … remoteProperty.setter = this._target.runtimeModel.createRemoteObject(property.set);
366 … var propertyValue = this._target.runtimeModel.createRemoteObject(property.value);
513 callback(this.target().runtimeModel.createRemoteObject(result), wasThrown);
735 … this._savedScopeProperties[i].value = this._target.runtimeModel.createRemoteObject(result);
DRuntimeModel.js140 WebInspector.RuntimeDispatcher = function(runtimeModel) argument
142 this._runtimeModel = runtimeModel;
237 callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown);
409 WebInspector.runtimeModel;
DDebuggerModel.js612 callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown);
644 var object = this.target().runtimeModel.createRemoteObject(scope.object);
1000 …return this._payload.this ? this.target().runtimeModel.createRemoteObject(this._payload.this) : nu…
1008 …return this._payload.returnValue ? this.target().runtimeModel.createRemoteObject(this._payload.re…
1174 …return this.target().runtimeModel.createRemoteObject(/** @type {!RuntimeAgent.RemoteObject} */(thi…
DDOMModel.js852 callback(this.target().runtimeModel.createRemoteObject(object));
1799 …return this._payload.handler ? this.target().runtimeModel.createRemoteObject(this._payload.handler…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DEventListenersSidebarPane.js203 …WebInspector.ObjectPropertiesSection.call(this, target.runtimeModel.createRemoteObjectFromPrimitiv…
205 this._runtimeModel = target.runtimeModel;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
DConsoleView.js203 target.runtimeModel.executionContexts().forEach(this._executionContextCreated, this);
204 …target.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreated, thi…
205 …target.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextDestroyed, t…
216 …target.runtimeModel.removeEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreated, …
217 …target.runtimeModel.removeEventListener(WebInspector.RuntimeModel.Events.ExecutionContextDestroyed…
DConsoleViewMessage.js341 parameters[i] = target.runtimeModel.createRemoteObject(parameters[i]);
343 … parameters[i] = target.runtimeModel.createRemoteObjectFromPrimitiveValue(parameters[i]);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
DExtensionAuditCategory.js165 var object = this._target.runtimeModel.createRemoteObject(result);
DExtensionPanel.js223 this._setObject(WebInspector.runtimeModel.createRemoteObject(result), title, callback);
DExtensionServer.js977 var executionContexts = WebInspector.runtimeModel.executionContexts();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
DCanvasProfileView.js555 …showCallback(WebInspector.runtimeModel.createRemoteObject(result), false, this._popoverAnchorEleme…
1118 …element.__evalResult = WebInspector.runtimeModel.createRemoteObjectFromPrimitiveValue(description);
1128 … element.__evalResult = WebInspector.runtimeModel.createRemoteObject(callArgument.remoteObject);
1147 … element.__evalResult = WebInspector.runtimeModel.createRemoteObjectFromPrimitiveValue(enumValue);
DHeapSnapshotGridNodes.js637 callback(WebInspector.runtimeModel.createRemoteObject(object), !!error);
639 …callback(WebInspector.runtimeModel.createRemoteObjectFromPrimitiveValue(WebInspector.UIString("Pre…
643 callback(WebInspector.runtimeModel.createRemoteObjectFromPrimitiveValue(this._name));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DTests.js534 …WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreate…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
DMain.js564 var object = WebInspector.runtimeModel.createRemoteObject(payload);