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 19c8f0fbacf33aa3d539e383511191155f03a840..8ef9935848aa331b86d3de24f32cd0e28242ed52 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'); |
@@ -49,14 +49,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; |