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

Unified Diff: ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js

Issue 575313004: Compiling file_manager, part 2: remove all warnings not caused by Object.freeze()-like enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@I_file_manager
Patch Set: Created 6 years, 3 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: ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js
diff --git a/ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js b/ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js
index 2e88232cc949bbfd239a5e5d9074dfc9ba2b6908..19d92073c0d5cfae3fd5c3c6c9db0b2cb200ed31 100644
--- a/ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js
+++ b/ui/file_manager/file_manager/foreground/js/folder_shortcuts_data_model.js
@@ -222,7 +222,7 @@ FolderShortcutsDataModel.prototype = {
* Returns the entries in the given range as a new array instance. The
* arguments and return value are compatible with Array.slice().
*
- * @param {number} start Where to start the selection.
+ * @param {number} begin Where to start the selection.
* @param {number=} opt_end Where to end the selection.
* @return {Array.<Entry>} Entries in the selected range.
*/
@@ -452,7 +452,7 @@ FolderShortcutsDataModel.prototype = {
/**
* Fires a 'permuted' event, which is compatible with cr.ui.ArrayDataModel.
- * @param {Array.<number>} Permutation array.
+ * @param {Array.<number>} permutation Permutation array.
*/
firePermutedEvent_: function(permutation) {
var permutedEvent = new Event('permuted');

Powered by Google App Engine
This is Rietveld 408576698