| 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 | 5 |
| 6 cr.define('bmm', function() { | 6 cr.define('bmm', function() { |
| 7 /** | 7 /** |
| 8 * The id of the bookmark root. | 8 * The id of the bookmark root. |
| 9 * @type {string} | 9 * @type {string} |
| 10 * @const | 10 * @const |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 }; | 298 }; |
| 299 | 299 |
| 300 return { | 300 return { |
| 301 BookmarkTree: BookmarkTree, | 301 BookmarkTree: BookmarkTree, |
| 302 BookmarkTreeItem: BookmarkTreeItem, | 302 BookmarkTreeItem: BookmarkTreeItem, |
| 303 treeLookup: treeLookup, | 303 treeLookup: treeLookup, |
| 304 tree: tree, | 304 tree: tree, |
| 305 ROOT_ID: ROOT_ID | 305 ROOT_ID: ROOT_ID |
| 306 }; | 306 }; |
| 307 }); | 307 }); |
| OLD | NEW |