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

Unified Diff: ui/webui/resources/js/cr/ui/focus_row.js

Issue 454223004: Typecheck JS files for chrome://history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@B_download
Patch Set: right rebase, switched to gyp Created 6 years, 4 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/webui/resources/js/cr/ui/focus_row.js
diff --git a/ui/webui/resources/js/cr/ui/focus_row.js b/ui/webui/resources/js/cr/ui/focus_row.js
index 9f3495d6780c0136f3c4c6024e114cad11b164f9..c8adde75758dfe7e0e7040c04459d6b32cb15ca2 100644
--- a/ui/webui/resources/js/cr/ui/focus_row.js
+++ b/ui/webui/resources/js/cr/ui/focus_row.js
@@ -41,10 +41,10 @@ cr.define('cr.ui', function() {
/** @type {!Node} */
this.boundary_ = opt_boundary || document;
- /** @private {FocusRow.Delegate|undefined} */
+ /** @private {cr.ui.FocusRow.Delegate|undefined} */
this.delegate_ = opt_delegate;
- /** @private {FocusRow.Observer|undefined} */
+ /** @private {cr.ui.FocusRow.Observer|undefined} */
this.observer_ = opt_observer;
/** @private {!EventTracker} */
@@ -93,6 +93,7 @@ cr.define('cr.ui', function() {
/**
* Called when the row is deactivated (removed from the focus order).
* @param {cr.ui.FocusRow} row The row removed from the focus order.
+ * @param {cr.ui.FocusRow} el The row removed from the focus order.
Dan Beam 2014/08/19 00:31:53 ^ remove
Vitaly Pavlenko 2014/08/19 18:30:27 Done.
*/
onDeactivate: assertNotReached,
};

Powered by Google App Engine
This is Rietveld 408576698