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

Unified Diff: chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/list.js

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 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/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/list.js
diff --git a/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/list.js b/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/list.js
index db786b86875e46892d349ec9c84e2307d8b97f15..bc71eb6823f4d2e26853259f8d60328be37ef6ea 100644
--- a/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/list.js
+++ b/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/list.js
@@ -819,8 +819,8 @@ cr.define('cr.ui', function() {
* Adds items to the list and {@code newCachedItems}.
* @param {number} firstIndex The index of first item, inclusively.
* @param {number} lastIndex The index of last item, exclusively.
- * @param {Object.<string, ListItem>} cachedItems Old items cache.
- * @param {Object.<string, ListItem>} newCachedItems New items cache.
+ * @param {Object<string, ListItem>} cachedItems Old items cache.
+ * @param {Object<string, ListItem>} newCachedItems New items cache.
*/
addItems: function(firstIndex, lastIndex, cachedItems, newCachedItems) {
var listItem;

Powered by Google App Engine
This is Rietveld 408576698