Index: chrome/renderer/resources/extensions/webstore_custom_bindings.js |
diff --git a/chrome/renderer/resources/extensions/webstore_custom_bindings.js b/chrome/renderer/resources/extensions/webstore_custom_bindings.js |
index 38187ca18d5e43269f88031959b3ddc777675d23..496fa66e40597bf4678741993d9415f6f4a0d6b3 100644 |
--- a/chrome/renderer/resources/extensions/webstore_custom_bindings.js |
+++ b/chrome/renderer/resources/extensions/webstore_custom_bindings.js |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Custom bindings for the webstore API. |
+// Custom binding for the webstore API. |
var webstoreNatives = requireNative('webstore'); |
@@ -47,14 +47,14 @@ var chromeWebstore = { |
} |
}; |
-// Called by webstore_bindings.cc. |
+// Called by webstore_binding.cc. |
var chromeHiddenWebstore = { |
onInstallResponse: function(installId, success, error) { |
installer.onInstallResponse(installId, success, error); |
} |
}; |
-// These must match the names in InstallWebstoreBindings in |
+// These must match the names in InstallWebstorebinding in |
// chrome/renderer/extensions/dispatcher.cc. |
exports.chromeWebstore = chromeWebstore; |
exports.chromeHiddenWebstore = chromeHiddenWebstore; |