Chromium Code Reviews| 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, |
| }; |