Chromium Code Reviews| Index: chrome/browser/resources/md_bookmarks/app.js |
| diff --git a/chrome/browser/resources/md_bookmarks/app.js b/chrome/browser/resources/md_bookmarks/app.js |
| index 0d79074a5202a434071f6d0b429f198882e86a21..c211f09e90c363b986eee23661a2a3216af93814 100644 |
| --- a/chrome/browser/resources/md_bookmarks/app.js |
| +++ b/chrome/browser/resources/md_bookmarks/app.js |
| @@ -9,10 +9,11 @@ Polymer({ |
| selectedId: String, |
| /** @type {BookmarkTreeNode} */ |
| - selectedNode: Object, |
| - |
| - /** @type {BookmarkTreeNode} */ |
| rootNode: Object, |
| + |
| + searchTerm: String, |
| + |
| + displayedList: Array, |
| }, |
| /** @override */ |
| @@ -20,4 +21,9 @@ Polymer({ |
| /** @type {BookmarksStoreElement} */ (this.$$('bookmarks-store')) |
| .initializeStore(); |
| }, |
| + |
| + /** @private */ |
| + sidebarActive_: function() { |
|
angelayang
2017/01/12 05:04:32
I will delete this in the next patch.
|
| + return this.searchTerm == ''; |
| + }, |
| }); |