Searched refs:runtimeModel (Results 1 – 21 of 21) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
D | ScopeChainSidebarPane.js | 123 var runtimeModel = callFrame.target().runtimeModel; 125 …var scopeObject = runtimeModel.createScopeRemoteObject(scope.object, new WebInspector.ScopeRef(i, … 127 var scopeObject = runtimeModel.createRemoteObject(scope.object);
|
D | JavaScriptSourceFrame.js | 581 … showCallback(target.runtimeModel.createRemoteObject(result), wasThrown, this._popoverAnchorBox);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | RemoteObject.js | 369 …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);
|
D | RuntimeModel.js | 140 WebInspector.RuntimeDispatcher = function(runtimeModel) argument 142 this._runtimeModel = runtimeModel; 240 …callback(this.target().runtimeModel.createRemoteObject(result), !!wasThrown, undefined, exceptionD… 412 WebInspector.runtimeModel;
|
D | Target.js | 122 this.runtimeModel = new WebInspector.RuntimeModel(this); 123 if (!WebInspector.runtimeModel) 124 WebInspector.runtimeModel = this.runtimeModel;
|
D | DebuggerModel.js | 615 …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…
|
D | DOMModel.js | 862 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/ |
D | ObjectPropertiesSection.js | 680 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));
|
D | ExecutionContextSelector.js | 69 var executionContexts = newTarget.runtimeModel.executionContexts(); 106 var executionContexts = targets[i].runtimeModel.executionContexts();
|
D | DOMBreakpointsSidebarPane.js | 115 … var targetNodeObject = details.target().runtimeModel.createRemoteObject(auxData["targetNode"]);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
D | EventListenersSidebarPane.js | 207 …WebInspector.ObjectPropertiesSection.call(this, target.runtimeModel.createRemoteObjectFromPrimitiv… 209 this._runtimeModel = target.runtimeModel;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
D | ContentScriptProjectDecorator.js | 62 contexts = contexts.concat(targets[i].runtimeModel.executionContexts());
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/ |
D | ExtensionAuditCategory.js | 165 var object = this._target.runtimeModel.createRemoteObject(result);
|
D | ExtensionPanel.js | 223 this._setObject(WebInspector.runtimeModel.createRemoteObject(result), title, callback);
|
D | ExtensionServer.js | 961 var executionContexts = WebInspector.runtimeModel.executionContexts();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
D | CanvasProfileView.js | 568 …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);
|
D | HeapSnapshotGridNodes.js | 642 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/ |
D | ConsoleViewMessage.js | 366 parameters[i] = target.runtimeModel.createRemoteObject(parameters[i]); 368 … parameters[i] = target.runtimeModel.createRemoteObjectFromPrimitiveValue(parameters[i]);
|
D | ConsoleView.js | 220 target.runtimeModel.executionContexts().forEach(this._executionContextCreated, this);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | Tests.js | 569 …WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.ExecutionContextCreate…
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/ |
D | Main.js | 575 var object = WebInspector.runtimeModel.createRemoteObject(payload);
|