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

Unified Diff: chrome/browser/resources/md_bookmarks/list.html

Issue 2735953002: MD Bookmarks: Integrate new data store with UI elements (Closed)
Patch Set: More tweaks Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_bookmarks/list.html
diff --git a/chrome/browser/resources/md_bookmarks/list.html b/chrome/browser/resources/md_bookmarks/list.html
index 19b6d9f0710d74e61ba05a12cc91dda6d25a6806..335f6eeacd490cc15ce7a45a9a6deab0cec06c34 100644
--- a/chrome/browser/resources/md_bookmarks/list.html
+++ b/chrome/browser/resources/md_bookmarks/list.html
@@ -8,6 +8,8 @@
<link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.html">
<link rel="import" href="chrome://bookmarks/item.html">
<link rel="import" href="chrome://bookmarks/shared_style.html">
+<link rel="import" href="chrome://bookmarks/store_client.html">
+<link rel="import" href="chrome://bookmarks/util.html">
<dom-module id="bookmarks-list">
<template>
@@ -71,9 +73,8 @@
</div>
</dialog>
<div id="bookmarksCard" hidden$="[[isEmptyList_(displayedList.length)]]">
- <template is="dom-repeat" items="[[displayedList]]" as="item">
- <bookmarks-item item="[[item]]"
- is-selected-item="[[item.isSelectedItem]]">
+ <template is="dom-repeat" items="[[displayedList]]" as="id">
+ <bookmarks-item item-id="[[id]]">
</bookmarks-item>
</template>
</div>

Powered by Google App Engine
This is Rietveld 408576698