Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7579)

Unified Diff: chrome/renderer/resources/extensions/webstore_custom_bindings.js

Issue 11571014: Lazy load chrome.* APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android compilation Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « chrome/renderer/resources/extensions/web_view_experimental.js ('k') | chrome/renderer/resources/renderer_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698