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/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);
DJavaScriptSourceFrame.js581 … showCallback(target.runtimeModel.createRemoteObject(result), wasThrown, this._popoverAnchorBox);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRemoteObject.js369 …var propertyValue = property.value ? this._target.runtimeModel.createRemoteObject(property.value) …
370 …var propertySymbol = property.symbol ? this._target.runtimeModel.createRemoteObject(property.symbo…
376 … remoteProperty.getter = this._target.runtimeModel.createRemoteObject(property.get);
378 … remoteProperty.setter = this._target.runtimeModel.createRemoteObject(property.set);
390 … var propertyValue = this._target.runtimeModel.createRemoteObject(property.value);
537 callback(this.target().runtimeModel.createRemoteObject(result), wasThrown);
786 … this._savedScopeProperties[i].value = this._target.runtimeModel.createRemoteObject(result);
DRuntimeModel.js140 WebInspector.RuntimeDispatcher = function(runtimeModel) argument
142 this._runtimeModel = runtimeModel;
240 …callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown, undefined, exceptionD…
412 WebInspector.runtimeModel;
DTarget.js122 this.runtimeModel = new WebInspector.RuntimeModel(this);
123 if (!WebInspector.runtimeModel)
124 WebInspector.runtimeModel = this.runtimeModel;
DDebuggerModel.js615 …callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown, undefined, exceptionD…
647 var object = this.target().runtimeModel.createRemoteObject(scope.object);
955 …return this._payload.this ? this.target().runtimeModel.createRemoteObject(this._payload.this) : nu…
963 …return this._payload.returnValue ? this.target().runtimeModel.createRemoteObject(this._payload.re…
1102 …return this.target().runtimeModel.createRemoteObject(/** @type {!RuntimeAgent.RemoteObject} */(thi…
DDOMModel.js862 callback(this.target().runtimeModel.createRemoteObject(object));
1896 …return this._payload.handler ? this.target().runtimeModel.createRemoteObject(this._payload.handler…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DObjectPropertiesSection.js680 var runtimeModel = this._remoteObject.target().runtimeModel;
682 var remoteObject = runtimeModel.createRemoteObject(scope.object);
689 var remoteObject = runtimeModel.createScopeRemoteObject(scope.object, scopeRef);
735 var runtimeModel = this._remoteObject.target().runtimeModel;
740 key: runtimeModel.createRemoteObject(entry.key),
741 value: runtimeModel.createRemoteObject(entry.value)
744 entriesLocalObject.push(runtimeModel.createRemoteObject(entry.value));
DExecutionContextSelector.js69 var executionContexts = newTarget.runtimeModel.executionContexts();
106 var executionContexts = targets[i].runtimeModel.executionContexts();
DDOMBreakpointsSidebarPane.js115 … var targetNodeObject = details.target().runtimeModel.createRemoteObject(auxData["targetNode"]);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DEventListenersSidebarPane.js207 …WebInspector.ObjectPropertiesSection.call(this, target.runtimeModel.createRemoteObjectFromPrimitiv…
209 this._runtimeModel = target.runtimeModel;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
DContentScriptProjectDecorator.js62 contexts = contexts.concat(targets[i].runtimeModel.executionContexts());
/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.js961 var executionContexts = WebInspector.runtimeModel.executionContexts();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
DCanvasProfileView.js568 …showCallback(WebInspector.runtimeModel.createRemoteObject(result), false, this._popoverAnchorEleme…
1161 …element.__evalResult = WebInspector.runtimeModel.createRemoteObjectFromPrimitiveValue(description);
1171 … element.__evalResult = WebInspector.runtimeModel.createRemoteObject(callArgument.remoteObject);
1190 … element.__evalResult = WebInspector.runtimeModel.createRemoteObjectFromPrimitiveValue(enumValue);
DHeapSnapshotGridNodes.js642 callback(target.runtimeModel.createRemoteObject(object));
644 …callback(target.runtimeModel.createRemoteObjectFromPrimitiveValue(WebInspector.UIString("Preview i…
648 callback(target.runtimeModel.createRemoteObjectFromPrimitiveValue(this._name));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
DConsoleViewMessage.js366 parameters[i] = target.runtimeModel.createRemoteObject(parameters[i]);
368 … parameters[i] = target.runtimeModel.createRemoteObjectFromPrimitiveValue(parameters[i]);
DConsoleView.js220 target.runtimeModel.executionContexts().forEach(this._executionContextCreated, this);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DTests.js569 …WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreate…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
DMain.js575 var object = WebInspector.runtimeModel.createRemoteObject(payload);