Chromium Code Reviews| Index: chrome/browser/resources/chromeos/user_images_grid.js |
| diff --git a/chrome/browser/resources/chromeos/user_images_grid.js b/chrome/browser/resources/chromeos/user_images_grid.js |
| index e96e004c312fe7ac32c0ca9436fd14105bc1cb75..eaf9c1d6317deac85b65f4417bafd52e5e42a0e4 100644 |
| --- a/chrome/browser/resources/chromeos/user_images_grid.js |
| +++ b/chrome/browser/resources/chromeos/user_images_grid.js |
| @@ -3,11 +3,11 @@ |
| // found in the LICENSE file. |
| cr.define('options', function() { |
| - const ArrayDataModel = cr.ui.ArrayDataModel; |
| - const Grid = cr.ui.Grid; |
| - const GridItem = cr.ui.GridItem; |
| - const GridSelectionController = cr.ui.GridSelectionController; |
| - const ListSingleSelectionModel = cr.ui.ListSingleSelectionModel; |
| + var ArrayDataModel = cr.ui.ArrayDataModel; |
|
Ivan Korotkov
2012/05/07 10:50:07
Please use the "/** @const */ var ... = ..." style
kmadhusu
2012/05/08 20:20:19
Done.
|
| + var Grid = cr.ui.Grid; |
| + var GridItem = cr.ui.GridItem; |
| + var GridSelectionController = cr.ui.GridSelectionController; |
| + var ListSingleSelectionModel = cr.ui.ListSingleSelectionModel; |
| /** |
| * Creates a new user images grid item. |