| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview This is a data model representin | 6 * @fileoverview This is a data model representin |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 cr.define('cr.ui', function() { | 9 cr.define('cr.ui', function() { |
| 10 /** @const */ var EventTarget = cr.EventTarget; | 10 /** @const */ var EventTarget = cr.EventTarget; |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 if (a > b) | 400 if (a > b) |
| 401 return 1; | 401 return 1; |
| 402 return 0; | 402 return 0; |
| 403 } | 403 } |
| 404 }; | 404 }; |
| 405 | 405 |
| 406 return { | 406 return { |
| 407 ArrayDataModel: ArrayDataModel | 407 ArrayDataModel: ArrayDataModel |
| 408 }; | 408 }; |
| 409 }); | 409 }); |
| OLD | NEW |