| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 'use strict'; | |
| 6 | 5 |
| 7 cr.define('bmm', function() { | 6 cr.define('bmm', function() { |
| 8 /** | 7 /** |
| 9 * The id of the bookmark root. | 8 * The id of the bookmark root. |
| 10 * @type {string} | 9 * @type {string} |
| 11 * @const | 10 * @const |
| 12 */ | 11 */ |
| 13 var ROOT_ID = '0'; | 12 var ROOT_ID = '0'; |
| 14 | 13 |
| 15 /** @const */ var Tree = cr.ui.Tree; | 14 /** @const */ var Tree = cr.ui.Tree; |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 }; | 312 }; |
| 314 | 313 |
| 315 return { | 314 return { |
| 316 BookmarkTree: BookmarkTree, | 315 BookmarkTree: BookmarkTree, |
| 317 BookmarkTreeItem: BookmarkTreeItem, | 316 BookmarkTreeItem: BookmarkTreeItem, |
| 318 treeLookup: treeLookup, | 317 treeLookup: treeLookup, |
| 319 tree: /** @type {Element} */(null), // Set when decorated. | 318 tree: /** @type {Element} */(null), // Set when decorated. |
| 320 ROOT_ID: ROOT_ID | 319 ROOT_ID: ROOT_ID |
| 321 }; | 320 }; |
| 322 }); | 321 }); |
| OLD | NEW |