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

Side by Side Diff: chrome/browser/resources/enhanced_bookmark_manager/js/bmm/bookmark_tree.js

Issue 24891002: Initial WebUI extension for enhanced bookmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698