Index: Source/devtools/front_end/ExtensionAPI.js |
diff --git a/Source/devtools/front_end/ExtensionAPI.js b/Source/devtools/front_end/ExtensionAPI.js |
index 300c6f88170c47468b37b1391f53f3c4b5900472..c1dbe125cf6dbaed2e10d6dc982177efe3f40e3b 100644 |
--- a/Source/devtools/front_end/ExtensionAPI.js |
+++ b/Source/devtools/front_end/ExtensionAPI.js |
@@ -629,11 +629,11 @@ function AuditResultImpl(id) |
{ |
this._id = id; |
- this.createURL = this._nodeFactory.bind(null, "url"); |
- this.createSnippet = this._nodeFactory.bind(null, "snippet"); |
- this.createText = this._nodeFactory.bind(null, "text"); |
- this.createObject = this._nodeFactory.bind(null, "object"); |
- this.createNode = this._nodeFactory.bind(null, "node"); |
+ this.createURL = this._nodeFactory.bind(this, "url"); |
+ this.createSnippet = this._nodeFactory.bind(this, "snippet"); |
+ this.createText = this._nodeFactory.bind(this, "text"); |
+ this.createObject = this._nodeFactory.bind(this, "object"); |
+ this.createNode = this._nodeFactory.bind(this, "node"); |
} |
AuditResultImpl.prototype = { |