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

Unified Diff: chrome/browser/resources/extensions/extension_list.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_list.js
diff --git a/chrome/browser/resources/extensions/extension_list.js b/chrome/browser/resources/extensions/extension_list.js
index de47102ecf5fdf9c352633ff1552ec0c7aa6c578..d4fcbf6babcd7bc2401013600cdcb86a2872a8c5 100644
--- a/chrome/browser/resources/extensions/extension_list.js
+++ b/chrome/browser/resources/extensions/extension_list.js
@@ -38,7 +38,7 @@
* kioskOnly: boolean,
* locationText: string,
* managedInstall: boolean,
- * manifestErrors: (Array.<RuntimeError>|undefined),
+ * manifestErrors: (Array<RuntimeError>|undefined),
* name: string,
* offlineEnabled: boolean,
* optionsOpenInTab: boolean,
@@ -50,13 +50,13 @@
* policyText: (string|undefined),
* prettifiedPath: (string|undefined),
* recommendedInstall: boolean,
- * runtimeErrors: (Array.<RuntimeError>|undefined),
+ * runtimeErrors: (Array<RuntimeError>|undefined),
* showAllUrls: boolean,
* suspiciousInstall: boolean,
* terminated: boolean,
* updateRequiredByPolicy: boolean,
* version: string,
- * views: Array.<{renderViewId: number, renderProcessId: number,
+ * views: Array<{renderViewId: number, renderProcessId: number,
* path: string, incognito: boolean,
* generatedBackgroundPage: boolean}>,
* wantsErrorCollection: boolean,
@@ -77,7 +77,7 @@ cr.define('options', function() {
var ExtensionsList = cr.ui.define('div');
/**
- * @type {Object.<string, number>} A map from extension id to last reloaded
+ * @type {Object<string, number>} A map from extension id to last reloaded
* timestamp. The timestamp is recorded when the user click the 'Reload'
* link. It is used to refresh the icon of an unpacked extension.
* This persists between calls to decorate.

Powered by Google App Engine
This is Rietveld 408576698