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

Unified Diff: chrome/browser/resources/print_preview/data/invitation_store.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/print_preview/data/invitation_store.js
diff --git a/chrome/browser/resources/print_preview/data/invitation_store.js b/chrome/browser/resources/print_preview/data/invitation_store.js
index 80720362764b4710b35d7322e7d434ab9f438618..86ba438ecf1b2731e3c7ab880f2b4790871faa2f 100644
--- a/chrome/browser/resources/print_preview/data/invitation_store.js
+++ b/chrome/browser/resources/print_preview/data/invitation_store.js
@@ -22,14 +22,14 @@ cr.define('print_preview', function() {
/**
* Maps user account to the list of invitations for this account.
- * @private {!Object.<string, !Array.<!print_preview.Invitation>>}
+ * @private {!Object<string, !Array<!print_preview.Invitation>>}
*/
this.invitations_ = {};
/**
* Maps user account to the flag whether the invitations for this account
* were successfully loaded.
- * @private {!Object.<string, print_preview.InvitationStore.LoadStatus_>}
+ * @private {!Object<string, print_preview.InvitationStore.LoadStatus_>}
*/
this.loadStatus_ = {};
@@ -87,7 +87,7 @@ cr.define('print_preview', function() {
/**
* @param {string} account Account to filter invitations by.
- * @return {!Array.<!print_preview.Invitation>} List of invitations for the
+ * @return {!Array<!print_preview.Invitation>} List of invitations for the
* {@code account}.
*/
invitations: function(account) {

Powered by Google App Engine
This is Rietveld 408576698