| 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 'use strict'; |
| 6 |
| 5 cr.define('bmm', function() { | 7 cr.define('bmm', function() { |
| 6 /** | 8 /** |
| 7 * Whether a node contains another node. | 9 * Whether a node contains another node. |
| 8 * TODO(yosin): Once JavaScript style guide is updated and linter follows | 10 * TODO(yosin): Once JavaScript style guide is updated and linter follows |
| 9 * that, we'll remove useless documentations for |parent| and |descendant|. | 11 * that, we'll remove useless documentations for |parent| and |descendant|. |
| 10 * TODO(yosin): bmm.contains() should be method of BookmarkTreeNode. | 12 * TODO(yosin): bmm.contains() should be method of BookmarkTreeNode. |
| 11 * @param {!BookmarkTreeNode} parent . | 13 * @param {!BookmarkTreeNode} parent . |
| 12 * @param {!BookmarkTreeNode} descendant . | 14 * @param {!BookmarkTreeNode} descendant . |
| 13 * @return {boolean} Whether the parent contains the descendant. | 15 * @return {boolean} Whether the parent contains the descendant. |
| 14 */ | 16 */ |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 }; | 242 }; |
| 241 | 243 |
| 242 return { | 244 return { |
| 243 contains: contains, | 245 contains: contains, |
| 244 isFolder: isFolder, | 246 isFolder: isFolder, |
| 245 loadSubtree: loadSubtree, | 247 loadSubtree: loadSubtree, |
| 246 loadTree: loadTree, | 248 loadTree: loadTree, |
| 247 addBookmarkModelListeners: addBookmarkModelListeners | 249 addBookmarkModelListeners: addBookmarkModelListeners |
| 248 }; | 250 }; |
| 249 }); | 251 }); |
| OLD | NEW |