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

Unified Diff: chrome/browser/resources/quota_internals/event_handler.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/quota_internals/event_handler.js
diff --git a/chrome/browser/resources/quota_internals/event_handler.js b/chrome/browser/resources/quota_internals/event_handler.js
index d92926fbb8a3645a2eab84756f58e06ab09f66ae..89fe3559a8c0a824e0c6ee825e8630d994fbfed6 100644
--- a/chrome/browser/resources/quota_internals/event_handler.js
+++ b/chrome/browser/resources/quota_internals/event_handler.js
@@ -74,7 +74,7 @@ function stringToText_(value) {
* e.g. separateBackward_('abcdefghijk', 4) == ['abc','defg','hijk'];
* @param {string} value String to be separated.
* @param {number} maxLength Max length of segments.
- * @return {Array.<string>} Array of segments.
+ * @return {Array<string>} Array of segments.
* @private
*/
function separateBackward_(value, maxLength) {
@@ -399,7 +399,7 @@ function handlePerOriginInfo(event) {
*/
function handleStatistics(event) {
/**
- * @type {Object.<string>}
+ * @type {Object<string>}
*/
var data = event.detail;
for (var key in data) {

Powered by Google App Engine
This is Rietveld 408576698