| Index: inspector/front-end/ObjectPropertiesSection.js
|
| ===================================================================
|
| --- inspector/front-end/ObjectPropertiesSection.js (revision 53180)
|
| +++ inspector/front-end/ObjectPropertiesSection.js (working copy)
|
| @@ -50,7 +50,7 @@
|
| return;
|
| self.updateProperties(properties);
|
| };
|
| - InjectedScriptAccess.getProperties(this.object, this.ignoreHasOwnProperty, true, callback);
|
| + InjectedScriptAccess.get(this.object.injectedScriptId).getProperties(this.object, this.ignoreHasOwnProperty, true, callback);
|
| },
|
|
|
| updateProperties: function(properties, rootTreeElementConstructor, rootPropertyComparer)
|
| @@ -147,7 +147,7 @@
|
| this.appendChild(new this.treeOutline.section.treeElementConstructor(properties[i]));
|
| }
|
| };
|
| - InjectedScriptAccess.getProperties(this.property.value, false, true, callback.bind(this));
|
| + InjectedScriptAccess.get(this.property.value.injectedScriptId).getProperties(this.property.value, false, true, callback.bind(this));
|
| },
|
|
|
| ondblclick: function(event)
|
| @@ -251,7 +251,7 @@
|
| self.updateSiblings();
|
| }
|
| };
|
| - InjectedScriptAccess.setPropertyValue(this.property.parentObjectProxy, this.property.name, expression.trimWhitespace(), callback);
|
| + InjectedScriptAccess.get(this.property.parentObjectProxy.injectedScriptId).setPropertyValue(this.property.parentObjectProxy, this.property.name, expression.trimWhitespace(), callback);
|
| }
|
| }
|
|
|
|
|