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

Unified Diff: chrome/browser/resources/extensions/extension_loader.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox Created 5 years, 10 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/browser/resources/extensions/extension_loader.js
diff --git a/chrome/browser/resources/extensions/extension_loader.js b/chrome/browser/resources/extensions/extension_loader.js
index a71baafaec716ea7e4f1b84e47905b4b0533b459..e089c6f29f9c9ad5f58c58e7527825653bc2b482 100644
--- a/chrome/browser/resources/extensions/extension_loader.js
+++ b/chrome/browser/resources/extensions/extension_loader.js
@@ -80,7 +80,7 @@ cr.define('extensions', function() {
/**
* An array of Failures for keeping track of multiple active failures.
- * @type {Array.<Failure>}
+ * @type {Array<Failure>}
* @private
*/
this.failures_ = [];
@@ -103,7 +103,7 @@ cr.define('extensions', function() {
/**
* Add a failure to failures_ array. If there is already a displayed
* failure, display the additional failures element.
- * @param {Array.<Object>} failures Array of failures containing paths,
+ * @param {Array<Object>} failures Array of failures containing paths,
* errors, and manifests.
* @private
*/
@@ -196,7 +196,7 @@ cr.define('extensions', function() {
/**
* Notify the ExtensionLoader that loading an unpacked extension failed.
* Add the failure to failures_ and show the ExtensionLoadError.
- * @param {Array.<Object>} failures Array of failures containing paths,
+ * @param {Array<Object>} failures Array of failures containing paths,
* errors, and manifests.
*/
notifyFailed: function(failures) {
@@ -206,7 +206,7 @@ cr.define('extensions', function() {
/**
* A static forwarding function for ExtensionLoader.notifyFailed.
- * @param {Array.<Object>} failures Array of failures containing paths,
+ * @param {Array<Object>} failures Array of failures containing paths,
* errors, and manifests.
* @see ExtensionLoader.notifyFailed
*/
« no previous file with comments | « chrome/browser/resources/extensions/extension_list.js ('k') | chrome/browser/resources/gaia_auth/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698