Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(472)

Side by Side Diff: chrome/browser/resources/bookmark_manager/js/bmm.js

Issue 1115683002: Adding strict mode for bookmark_manager file for better error checking. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 });
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/bookmark_manager/js/bmm/bookmark_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698